Fix `SPC j k` unwanted auto-comment

When the cursor is on a commented line, the next indented line was
commented as well.
This commit is contained in:
Driftcrow 2015-10-17 09:23:20 +08:00 committed by syl20bnr
parent ab23559047
commit 31e0976742
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ the current state and point position."
(let ((counter (or count 1)))
(while (> counter 0)
(join-line 1)
(sp-newline)
(newline-and-indent)
(setq counter (1- counter)))))
;; from Prelude