Skip to content

Commit

Permalink
Make a couple of arguments more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
Malabarba committed May 11, 2016
1 parent 915c533 commit 8a4dcc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clojure-mode.el
Expand Up @@ -1569,7 +1569,7 @@ current sexp."
(save-excursion
(let ((contents (clojure-delete-and-extract-sexp)))
(when (looking-at " *\n")
(join-line -1))
(join-line 'following))
(clojure--ensure-parens-around-function-names)
(let* ((sexp-beg-line (line-number-at-pos))
(sexp-end-line (progn (forward-sexp)
Expand All @@ -1596,7 +1596,7 @@ Point must be between the opening paren and the -> symbol."
(save-excursion
(let ((contents (clojure-delete-and-extract-sexp)))
(when (looking-at " *\n")
(join-line -1))
(join-line 'following))
(clojure--ensure-parens-around-function-names)
(down-list)
(forward-sexp)
Expand Down

0 comments on commit 8a4dcc6

Please sign in to comment.