Skip to content

Commit

Permalink
Silence compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dalugm authored and bbatsov committed Mar 4, 2024
1 parent d0919b4 commit 3792e08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clojure-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ to indent keyword invocation forms.
location
0)"
:safe #'symbolp
:type '(choice (const :tag "Same as `lisp-mode'" 'always-align)
(const :tag "Indent like a macro body" 'always-indent)
:type '(choice (const :tag "Same as `lisp-mode'" always-align)
(const :tag "Indent like a macro body" always-indent)
(const :tag "Indent like a macro body unless first arg is on the same line"
'align-arguments))
align-arguments))
:package-version '(clojure-mode . "5.19.0"))

(defcustom clojure-use-backtracking-indent t
Expand Down Expand Up @@ -1280,7 +1280,7 @@ preceeded by a #."
(clojure-string-start nil))))))

(defun clojure-font-lock-escaped-chars (bound)
"Highlight \escaped chars in strings.
"Highlight \\escaped chars in strings.
BOUND denotes a buffer position to limit the search."
(let ((found nil))
(while (and (not found)
Expand Down

0 comments on commit 3792e08

Please sign in to comment.