]> git.eshelyaron.com Git - emacs.git/commitdiff
newcomment.el (comment-line): Fix missing paren.
authorArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 8 Feb 2015 22:24:36 +0000 (20:24 -0200)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 8 Feb 2015 22:24:36 +0000 (20:24 -0200)
lisp/ChangeLog
lisp/newcomment.el

index 8848fe6d904c12d6f9a6178525b72ec260c07735..ad4f3b9a7f30f2c587c4c0ba3a3cbb16ff12a31d 100644 (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
index aabafc76b9a77fd4940481faf48ac2d572566efd..172a5634a579d1ca476aa386515b36bb14542772 100644 (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)