From: Karl Heuer Date: Thu, 3 Feb 1994 19:18:21 +0000 (+0000) Subject: (c-fill-paragraph): Delete extraneous close paren. X-Git-Tag: emacs-19.34~10090 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c9a73a9be7a682286f74223990c9cb5622bd3b37;p=emacs.git (c-fill-paragraph): Delete extraneous close paren. --- 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)