From: Richard M. Stallman Date: Mon, 20 Sep 2004 15:45:31 +0000 (+0000) Subject: (makefile-fill-paragraph): Don't insist on spaces when looking for X-Git-Tag: ttn-vms-21-2-B4~4869 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4beb7453bda8435eb0175baef20a172c0451c527;p=emacs.git (makefile-fill-paragraph): Don't insist on spaces when looking for comments. # is enough. --- diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index c887b144965..99138444f7c 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -1028,7 +1028,7 @@ definition and conveniently use this command." (save-excursion (beginning-of-line) (cond - ((looking-at "^#+ ") + ((looking-at "^#+") ;; Found a comment. Set the fill prefix, and find the paragraph ;; boundaries by searching for lines that look like comment-only ;; lines.