@@ -2682,7 +2682,7 @@ lists up."
2682
2682
;;;### autoload
2683
2683
(defun clojure-let-backward-slurp-sexp (&optional n )
2684
2684
" Slurp the s-expression before the let form into the let form.
2685
- With a numberic prefix argument slurp the previous N s-expression
2685
+ With a numeric prefix argument slurp the previous N s-expressions
2686
2686
into the let form."
2687
2687
(interactive " p" )
2688
2688
(let ((n (or n 1 )))
@@ -2702,7 +2702,8 @@ into the let form."
2702
2702
;;;### autoload
2703
2703
(defun clojure-let-forward-slurp-sexp (&optional n )
2704
2704
" Slurp the next s-expression after the let form into the let form.
2705
- With a numeric prefix argument slurp the next N s-expressions into the let form."
2705
+ With a numeric prefix argument slurp the next N s-expressions
2706
+ into the let form."
2706
2707
(interactive " p" )
2707
2708
(unless n (setq n 1 ))
2708
2709
(dotimes (_ n)
@@ -2731,8 +2732,8 @@ With a numeric prefix argument the let is introduced N lists up."
2731
2732
(let ((rgx (concat " :as +" current-alias))
2732
2733
(bound (save-excursion (forward-list 1 ) (point ))))
2733
2734
(if (save-excursion (search-forward-regexp rgx bound t ))
2734
- (let ((new-alias (read-from-minibuffer " New alias: " )))
2735
- (clojure--rename-ns-alias-internal current-alias new-alias))
2735
+ (let ((new-alias (read-from-minibuffer " New alias: " )))
2736
+ (clojure--rename-ns-alias-internal current-alias new-alias))
2736
2737
(message " Cannot find namespace alias: '%s ' " current-alias))))))
2737
2738
2738
2739
;;;### autoload
@@ -2755,7 +2756,7 @@ With a numeric prefix argument the let is introduced N lists up."
2755
2756
((looking-back " \\ [" 1 ) ; ; single-arity defn
2756
2757
(let* ((bol (save-excursion (beginning-of-line ) (point )))
2757
2758
(same-line (save-excursion (re-search-backward " defn" bol t )))
2758
- (new-arity-text (concat (when same-line " \n " ) " ([])\n [" )))
2759
+ (new-arity-text (concat (when same-line " \n " ) " ([])\n [" )))
2759
2760
(re-search-backward " +\\ [" )
2760
2761
(replace-match new-arity-text)
2761
2762
(save-excursion
0 commit comments