]> git.eshelyaron.com Git - emacs.git/commitdiff
(makefile-fill-paragraph): Don't insist on spaces when looking for
authorRichard M. Stallman <rms@gnu.org>
Mon, 20 Sep 2004 15:45:31 +0000 (15:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 20 Sep 2004 15:45:31 +0000 (15:45 +0000)
comments.  # is enough.

lisp/progmodes/make-mode.el

index c887b14496508ba4535a619e84d3c37ac86be1f9..99138444f7ccca46377cf0c368b320586729f7af 100644 (file)
@@ -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.