1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

newcomment.el (comment-line): Fix missing paren.

This commit is contained in:
Artur Malabarba 2015-02-08 20:24:36 -02:00
parent dbde138155
commit 7d631aa0ff
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-02-08 Artur Malabarba <bruce.connor.am@gmail.com>
* newcomment.el (comment-line): Fix missing paren.
2015-02-08 Ulrich Müller <ulm@gentoo.org>
* play/gamegrid.el: Update comment to reflect that the

View File

@ -1481,7 +1481,7 @@ Unlike `comment-dwim', this always comments whole lines."
(apply #'max range)))
(forward-line 1)
(back-to-indentation)
(unless (natnump n) (setq this-command 'comment-line-backward)))
(unless (natnump n) (setq this-command 'comment-line-backward))))
(provide 'newcomment)