diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-08 20:24:36 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-08 20:24:36 -0200 |
commit | 7d631aa0ffab875e4979727f632703ad5b4100a2 (patch) | |
tree | edf6983a94248a5a8bc0ff2643cfafede8e2419d /lisp/newcomment.el | |
parent | dbde138155118344b33dfd2db95f688a24a42fec (diff) | |
download | emacs-7d631aa0ffab875e4979727f632703ad5b4100a2.tar.gz emacs-7d631aa0ffab875e4979727f632703ad5b4100a2.tar.bz2 emacs-7d631aa0ffab875e4979727f632703ad5b4100a2.zip |
newcomment.el (comment-line): Fix missing paren.
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r-- | lisp/newcomment.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |