summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-02-03 19:18:21 +0000
committerKarl Heuer <kwzh@gnu.org>1994-02-03 19:18:21 +0000
commitc9a73a9be7a682286f74223990c9cb5622bd3b37 (patch)
tree9d1c7a7e3169c04e02c6d8a705d23f01d79691b2 /lisp
parent550bd63a2cd113504605de0bd38a33c047e1ccd6 (diff)
downloademacs-c9a73a9be7a682286f74223990c9cb5622bd3b37.tar.gz
emacs-c9a73a9be7a682286f74223990c9cb5622bd3b37.tar.bz2
emacs-c9a73a9be7a682286f74223990c9cb5622bd3b37.zip
(c-fill-paragraph): Delete extraneous close paren.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/c-mode.el2
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)