File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ For example, \[ is allowed in :db/id[:db.part/user]."
141
141
:group 'clojure
142
142
:safe (lambda (value )
143
143
(and (listp value)
144
- (every 'characterp value))))
144
+ (cl- every 'characterp value))))
145
145
146
146
(defvar clojure-mode-map
147
147
(let ((map (make-sparse-keymap )))
@@ -225,6 +225,9 @@ ENDP and DELIMITER."
225
225
t )
226
226
(= orig-point (match-end 0 )))))))))
227
227
228
+ (declare-function paredit-open-curly " ext:paredit" )
229
+ (declare-function paredit-close-curly " ext:paredit" )
230
+
228
231
(defun clojure-paredit-setup ()
229
232
" Make \" paredit-mode\" play nice with `clojure-mode' ."
230
233
(when (>= paredit-version 21 )
@@ -705,7 +708,7 @@ This function also returns nil meaning don't specify the indentation."
705
708
(clojure-backtracking-indent
706
709
indent-point state normal-indent)))))))
707
710
708
- (defun clojure-backtracking-indent (indent-point state normal -indent )
711
+ (defun clojure-backtracking-indent (indent-point state _normal -indent )
709
712
" Experimental backtracking support.
710
713
711
714
Given an INDENT-POINT, the STATE, and the NORMAL-INDENT, will
You can’t perform that action at this time.
0 commit comments