From: Glenn Morris Date: Sat, 15 Jun 2013 02:25:00 +0000 (-0700) Subject: * make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2016^2~101 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0100d8adca70ae826dfc67fd55c50c4503e8d28;p=emacs.git * make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation. Fixes: debbugs:14614 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f45fbd3f5e0..0177c88e858 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-06-15 Glenn Morris + + * progmodes/make-mode.el (makefile-mode-syntax-table): + Treat "=" as punctuation. (Bug#14614) + 2013-06-15 Juanma Barranquero * help-fns.el (describe-variable): diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index 3069c790e1c..3c0871e57b6 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -712,7 +712,9 @@ The function must satisfy this calling convention: (modify-syntax-entry ?\` "\" " st) (modify-syntax-entry ?# "< " st) (modify-syntax-entry ?\n "> " st) - st)) + (modify-syntax-entry ?= "." st) + st) + "Syntax table used in `makefile-mode'.") (defvar makefile-imake-mode-syntax-table (let ((st (make-syntax-table makefile-mode-syntax-table)))