]> git.eshelyaron.com Git - emacs.git/commitdiff
(comment-indent): "?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 14:01:47 +0000 (14:01 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 14:01:47 +0000 (14:01 +0000)
lisp/newcomment.el

index 9d089a2e164045056200bc950e7042eb2033c6f2..d0b29d43f14ccf18ea918ca6e8bf0954aed22e9c 100644 (file)
@@ -551,8 +551,8 @@ If CONTINUE is non-nil, use the `comment-continue' markers if any."
            (indent-to comment-column)
            ;; Ensure there's a space before the comment for things
            ;; like sh where it matters (as well as being neater).
-           (unless (memq (char-before) '(nil ?\n ?\t ?\ ))
-             (insert ?\ ))
+           (unless (memq (char-before) '(nil ?\n ?\t ?\s))
+             (insert ?\s))
            (setq begpos (point))
            (insert starter)
            (setq cpos (point-marker))