aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/make-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-04-12 05:40:15 +0000
committerStefan Monnier <[email protected]>2008-04-12 05:40:15 +0000
commit5e01f1ca4989b9466927f48a8a5fdca031fa08dc (patch)
treeeca6b31b50d349396b37ec035aef29a8a7846a01 /lisp/progmodes/make-mode.el
parent2900c113b4d9c9d288e366441a7562647745b86d (diff)
(makefile-fill-paragraph): Treat indented comments like unindented ones.
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r--lisp/progmodes/make-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 450532a724..8ebe8f142d 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 "^#+\\s-*")
+ ((looking-at "^[ \t]*#+\\s-*")
;; Found a comment. Return nil to let normal filling take place.
nil)