From: Juanma Barranquero Date: Mon, 27 Nov 2006 14:01:47 +0000 (+0000) Subject: (comment-indent): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7c0bbe7fa1f4df3280ad18d2b3ffdfbb076773cc;p=emacs.git (comment-indent): "?\ " -> "?\s". --- diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 9d089a2e164..d0b29d43f14 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -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))