aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-06-14 19:25:00 -0700
committerGlenn Morris2013-06-14 19:25:00 -0700
commitf0100d8adca70ae826dfc67fd55c50c4503e8d28 (patch)
treef381fb901fc9141d2f80c2e422aeb6a186902696
parent05e7ce903731c7d79b14f6687ee365693e4dff49 (diff)
downloademacs-f0100d8adca70ae826dfc67fd55c50c4503e8d28.tar.gz
emacs-f0100d8adca70ae826dfc67fd55c50c4503e8d28.zip
* make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation.
Fixes: debbugs:14614
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/make-mode.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f45fbd3f5e0..0177c88e858 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-06-15 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/make-mode.el (makefile-mode-syntax-table):
4 Treat "=" as punctuation. (Bug#14614)
5
12013-06-15 Juanma Barranquero <lekktu@gmail.com> 62013-06-15 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * help-fns.el (describe-variable): 8 * 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:
712 (modify-syntax-entry ?\` "\" " st) 712 (modify-syntax-entry ?\` "\" " st)
713 (modify-syntax-entry ?# "< " st) 713 (modify-syntax-entry ?# "< " st)
714 (modify-syntax-entry ?\n "> " st) 714 (modify-syntax-entry ?\n "> " st)
715 st)) 715 (modify-syntax-entry ?= "." st)
716 st)
717 "Syntax table used in `makefile-mode'.")
716 718
717(defvar makefile-imake-mode-syntax-table 719(defvar makefile-imake-mode-syntax-table
718 (let ((st (make-syntax-table makefile-mode-syntax-table))) 720 (let ((st (make-syntax-table makefile-mode-syntax-table)))