diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-02-03 19:18:21 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-02-03 19:18:21 +0000 |
commit | 26bd37721755ba731483d9329396ca455f9dfabf (patch) | |
tree | 7fdc8af42cd6efff00478cffb5d2dfa9ea02f66a /lisp/progmodes/c-mode.el | |
parent | 5a560d115c6370fdb817eb08f56a882c469424a3 (diff) | |
download | emacs-26bd37721755ba731483d9329396ca455f9dfabf.tar.gz |
(c-fill-paragraph): Delete extraneous close paren.
Diffstat (limited to 'lisp/progmodes/c-mode.el')
-rw-r--r-- | lisp/progmodes/c-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index 99ba7184c86..f155ed17596 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el @@ -323,7 +323,7 @@ preserving the comment indentation or line-starting decorations." (narrow-to-region (point) (save-excursion (forward-line 1) - (while (looking-at "[ \t]*//")) + (while (looking-at "[ \t]*//") (forward-line 1)) (point))) (insert fill-prefix) |