mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(comment-region): Do move to next line, in neg arg case.
This commit is contained in:
parent
ac6895157f
commit
6e88ed495e
1 changed files with 2 additions and 1 deletions
|
|
@ -1555,7 +1555,8 @@ not end the comment. Blank lines do not get comments."
|
|||
(skip-chars-backward " \t")
|
||||
(backward-char (length ce))
|
||||
(if (looking-at (regexp-quote ce))
|
||||
(delete-char (length ce))))))
|
||||
(delete-char (length ce)))))
|
||||
(forward-line 1))
|
||||
(if (looking-at "[ \t]*$") ()
|
||||
(insert cs)
|
||||
(if (string= "" ce) ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue