diff options
author | Glenn Morris <rgm@gnu.org> | 2013-06-14 19:25:00 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-06-14 19:25:00 -0700 |
commit | f0100d8adca70ae826dfc67fd55c50c4503e8d28 (patch) | |
tree | f381fb901fc9141d2f80c2e422aeb6a186902696 /lisp/progmodes/make-mode.el | |
parent | 05e7ce903731c7d79b14f6687ee365693e4dff49 (diff) | |
download | emacs-f0100d8adca70ae826dfc67fd55c50c4503e8d28.tar.gz emacs-f0100d8adca70ae826dfc67fd55c50c4503e8d28.tar.bz2 emacs-f0100d8adca70ae826dfc67fd55c50c4503e8d28.zip |
* make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation.
Fixes: debbugs:14614
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r-- | lisp/progmodes/make-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
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))) |