Skip to content

Commit 8a4dcc6

Browse files
committed
Make a couple of arguments more explicit
1 parent 915c533 commit 8a4dcc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clojure-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,7 @@ current sexp."
15691569
(save-excursion
15701570
(let ((contents (clojure-delete-and-extract-sexp)))
15711571
(when (looking-at " *\n")
1572-
(join-line -1))
1572+
(join-line 'following))
15731573
(clojure--ensure-parens-around-function-names)
15741574
(let* ((sexp-beg-line (line-number-at-pos))
15751575
(sexp-end-line (progn (forward-sexp)
@@ -1596,7 +1596,7 @@ Point must be between the opening paren and the -> symbol."
15961596
(save-excursion
15971597
(let ((contents (clojure-delete-and-extract-sexp)))
15981598
(when (looking-at " *\n")
1599-
(join-line -1))
1599+
(join-line 'following))
16001600
(clojure--ensure-parens-around-function-names)
16011601
(down-list)
16021602
(forward-sexp)

0 commit comments

Comments
 (0)