Skip to content

Commit 89baf87

Browse files
committed
Fix a docstring and a compilation warning
1 parent da15f2c commit 89baf87

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clojure-mode.el

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2619,10 +2619,11 @@ lists up."
26192619
;;;###autoload
26202620
(defun clojure-let-backward-slurp-sexp (&optional n)
26212621
"Slurp the s-expression before the let form into the let form.
2622-
With a numberic prefix argument slurp the previous N s-expression into the let form."
2622+
With a numberic prefix argument slurp the previous N s-expression
2623+
into the let form."
26232624
(interactive "p")
26242625
(unless n (setq n 1))
2625-
(dotimes (k n)
2626+
(dotimes (_ n)
26262627
(save-excursion (clojure--let-backward-slurp-sexp-internal))))
26272628

26282629
(defun clojure--let-forward-slurp-sexp-internal ()

0 commit comments

Comments
 (0)