From: Eli Zaretskii Date: Fri, 9 Jun 2006 17:43:54 +0000 (+0000) Subject: (makefile-fill-paragraph): Don't remove spaces after the comment start. X-Git-Tag: emacs-pretest-22.0.90~2008 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=594dde9bb7d36481449b837f69d2ce477082e87b;p=emacs.git (makefile-fill-paragraph): Don't remove spaces after the comment start. --- diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index d22aedb6058..a3146df3e45 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -1304,7 +1304,7 @@ definition and conveniently use this command." (save-excursion (beginning-of-line) (cond - ((looking-at "^#+") + ((looking-at "^#+\\s-*") ;; Found a comment. Return nil to let normal filling take place. nil)