# HG changeset patch # User Richard M. Stallman # Date 1095695131 0 # Node ID 84b733d819d4cf5b953d8ab94ea65bbe4668cc63 # Parent 4d72b7709db129fdfbc9f47029bc9489104fa481 (makefile-fill-paragraph): Don't insist on spaces when looking for comments. # is enough. diff -r 4d72b7709db1 -r 84b733d819d4 lisp/progmodes/make-mode.el --- a/lisp/progmodes/make-mode.el Mon Sep 20 15:41:40 2004 +0000 +++ b/lisp/progmodes/make-mode.el Mon Sep 20 15:45:31 2004 +0000 @@ -1028,7 +1028,7 @@ (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.