]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-fill-paragraph): Don't delete white
authorGerd Moellmann <gerd@gnu.org>
Tue, 28 Dec 1999 16:16:23 +0000 (16:16 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 28 Dec 1999 16:16:23 +0000 (16:16 +0000)
space in front of a C-style comment end.

lisp/ChangeLog
lisp/progmodes/cc-cmds.el

index 3d6eb9e36c3d32388e6fce7c84441d4df51a2a58..1a8f0987689767bfecf306f4467ada02dc49966d 100644 (file)
@@ -1,3 +1,8 @@
+1999-12-28  Gerd Moellmann  <gerd@gnu.org>
+
+       * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
+       space in front of a C-style comment end.
+
 1999-12-28  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * startup.el (command-line-1): Make mode line mouse-sensitive for
index 05d2599d957a6c1eefcd050ae289d1c6ae376af2..6e0608db3920a020471d02fba5d9c67b1c9a57ca 100644 (file)
@@ -2088,7 +2088,7 @@ Optional prefix ARG means justify paragraph as well."
                          ;; 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))