diff options
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r-- | lisp/progmodes/make-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index cffb749c3e8..54292b5d393 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -1313,7 +1313,7 @@ Fill comments, backslashed lines, and variable definitions specially." ;; which back-to-indentation (called via fill-newline -> ;; fill-indent-to-left-margin -> indent-line-to) thinks are real code ;; (bug#13179). - (remove-text-properties (point-min) (point-max) '(syntax-table)) + (remove-text-properties (point-min) (point-max) '(syntax-table nil)) (let ((fill-paragraph-function nil) ;; Adjust fill-column to allow space for the backslash. (fill-column (- fill-column 1))) |