changeset 57158:84b733d819d4

(makefile-fill-paragraph): Don't insist on spaces when looking for comments. # is enough.
author Richard M. Stallman <rms@gnu.org>
date Mon, 20 Sep 2004 15:45:31 +0000
parents 4d72b7709db1
children e00b0d40b4bc
files lisp/progmodes/make-mode.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.