From 3792e08b76aa7fdae18938e1966ea140b9817a9a Mon Sep 17 00:00:00 2001 From: dalu <25452934+dalugm@users.noreply.github.com> Date: Mon, 4 Mar 2024 09:49:44 +0800 Subject: [PATCH] Silence compilation warning --- clojure-mode.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clojure-mode.el b/clojure-mode.el index 71b40a73..7031c625 100644 --- a/clojure-mode.el +++ b/clojure-mode.el @@ -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 @@ -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)