changeset 27021:0c7659f0428f

(c-fill-paragraph): Don't delete white space in front of a C-style comment end.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 28 Dec 1999 16:13:08 +0000
parents a7feebdd964d
children 409a1b7f4284
files lisp/progmodes/cc-cmds.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/cc-cmds.el	Tue Dec 28 16:03:01 1999 +0000
+++ b/lisp/progmodes/cc-cmds.el	Tue Dec 28 16:13:08 1999 +0000
@@ -2088,7 +2088,7 @@
 			  ;; along with surrounding ws.
 			  nil
 			(goto-char ender-start))
-		      (skip-chars-backward " \t\r\n")
+		      ;(skip-chars-backward " \t\r\n")
 		      (when (/= (point) ender-start)
 			(insert ?x)	; Insert first to keep marks right.
 			(delete-region (point) (1+ ender-start))