comparison lisp/progmodes/make-mode.el @ 94293:ca9efc5939fc

Merge from emacs--rel--22 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1121
author Miles Bader <miles@gnu.org>
date Wed, 23 Apr 2008 05:55:42 +0000
parents 0905c6be13b6 5a66e871f1e0
children 52b7a8c22af5
comparison
equal deleted inserted replaced
94292:f07af351ed0b 94293:ca9efc5939fc
1350 ;; Fill comments, backslashed lines, and variable definitions 1350 ;; Fill comments, backslashed lines, and variable definitions
1351 ;; specially. 1351 ;; specially.
1352 (save-excursion 1352 (save-excursion
1353 (beginning-of-line) 1353 (beginning-of-line)
1354 (cond 1354 (cond
1355 ((looking-at "^#+\\s-*") 1355 ((looking-at "^[ \t]*#+\\s-*")
1356 ;; Found a comment. Return nil to let normal filling take place. 1356 ;; Found a comment. Return nil to let normal filling take place.
1357 nil) 1357 nil)
1358 1358
1359 ;; Must look for backslashed-region before looking for variable 1359 ;; Must look for backslashed-region before looking for variable
1360 ;; assignment. 1360 ;; assignment.