File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 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]."
141141 :group 'clojure
142142 :safe (lambda (value )
143143 (and (listp value)
144- (every 'characterp value))))
144+ (cl- every 'characterp value))))
145145
146146(defvar clojure-mode-map
147147 (let ((map (make-sparse-keymap )))
@@ -225,6 +225,9 @@ ENDP and DELIMITER."
225225 t )
226226 (= orig-point (match-end 0 )))))))))
227227
228+ (declare-function paredit-open-curly " ext:paredit" )
229+ (declare-function paredit-close-curly " ext:paredit" )
230+
228231(defun clojure-paredit-setup ()
229232 " Make \" paredit-mode\" play nice with `clojure-mode' ."
230233 (when (>= paredit-version 21 )
@@ -705,7 +708,7 @@ This function also returns nil meaning don't specify the indentation."
705708 (clojure-backtracking-indent
706709 indent-point state normal-indent)))))))
707710
708- (defun clojure-backtracking-indent (indent-point state normal -indent )
711+ (defun clojure-backtracking-indent (indent-point state _normal -indent )
709712 " Experimental backtracking support.
710713
711714Given an INDENT-POINT, the STATE, and the NORMAL-INDENT, will
You can’t perform that action at this time.
0 commit comments