Skip to content

Commit b75cdcc

Browse files
committed
Avoid No comment syntax is defined prompts
Fixes #2903
1 parent 27ed547 commit b75cdcc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
- If specified, only errors will result in an overlay being shown.
1212
- [#3527](https://github.com/clojure-emacs/cider/issues/3527): Preserve the font size as one navigates through the CIDER inspector.
1313
- [#3525](https://github.com/clojure-emacs/cider/issues/3525): Introduce [`cider-inline-error-message-function`](https://docs.cider.mx/cider/usage/code_evaluation.html#overlays) customization option.
14+
- [#2903](https://github.com/clojure-emacs/cider/issues/2903): Avoid `No comment syntax is defined` prompts.
15+
- Bump the `clojure-mode` required version to [5.18.0](https://github.com/clojure-emacs/clojure-mode/blob/v5.18.0/CHANGELOG.md#5180-2023-10-18)
1416

1517
## 1.8.2 (2023-10-15)
1618

cider-debug.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ The boolean value of FORCE will be sent in the reply."
770770
(> here (point))))
771771
(user-error "Point is outside the sexp being debugged"))
772772
;; Move forward until start of sexp.
773-
(comment-normalize-vars)
773+
(comment-normalize-vars t)
774774
(comment-forward (point-max))
775775
;; Find the coordinate and send it.
776776
(cider-debug-mode-send-reply

cider.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
1313
;; URL: http://www.github.com/clojure-emacs/cider
1414
;; Version: 1.8.2
15-
;; Package-Requires: ((emacs "26") (clojure-mode "5.17.1") (parseedn "1.2.0") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
15+
;; Package-Requires: ((emacs "26") (clojure-mode "5.18.0") (parseedn "1.2.0") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
1616
;; Keywords: languages, clojure, cider
1717

1818
;; This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)