1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

* make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation.

Fixes: debbugs:14614
This commit is contained in:
Glenn Morris 2013-06-14 19:25:00 -07:00
parent 05e7ce9037
commit f0100d8adc
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-06-15 Glenn Morris <rgm@gnu.org>
* progmodes/make-mode.el (makefile-mode-syntax-table):
Treat "=" as punctuation. (Bug#14614)
2013-06-15 Juanma Barranquero <lekktu@gmail.com>
* help-fns.el (describe-variable):

View file

@ -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)))