summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-02-08 20:24:36 -0200
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-02-08 20:24:36 -0200
commit7d631aa0ffab875e4979727f632703ad5b4100a2 (patch)
treeedf6983a94248a5a8bc0ff2643cfafede8e2419d /lisp
parentdbde138155118344b33dfd2db95f688a24a42fec (diff)
downloademacs-7d631aa0ffab875e4979727f632703ad5b4100a2.tar.gz
newcomment.el (comment-line): Fix missing paren.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/newcomment.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8848fe6d904..ad4f3b9a7f3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index aabafc76b9a..172a5634a57 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -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)