diff options
author | Dima Kogan <dima@secretsauce.net> | 2016-09-19 22:55:34 -0700 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-05-15 19:33:34 -0400 |
commit | 4c3cd27df9c0735d907813a8c16a87acc54b9edc (patch) | |
tree | 1ea787e7ab54f371d511e226c9b5e14198a0ea37 /lisp/progmodes/make-mode.el | |
parent | 2fda57c6fb29262261911819ec8f5e4cccb3abbb (diff) | |
download | emacs-4c3cd27df9c0735d907813a8c16a87acc54b9edc.tar.gz emacs-4c3cd27df9c0735d907813a8c16a87acc54b9edc.tar.bz2 emacs-4c3cd27df9c0735d907813a8c16a87acc54b9edc.zip |
Give '$' punctuation syntax in make-mode (Bug#24477)
* lisp/progmodes/make-mode.el (makefile-mode-syntax-table): Set syntax
of '$' to punctuation.
Diffstat (limited to 'lisp/progmodes/make-mode.el')
-rw-r--r-- | lisp/progmodes/make-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index ba2b1cb94a3..f67407f48ee 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el @@ -713,6 +713,7 @@ The function must satisfy this calling convention: (modify-syntax-entry ?# "< " st) (modify-syntax-entry ?\n "> " st) (modify-syntax-entry ?= "." st) + (modify-syntax-entry ?$ "." st) st) "Syntax table used in `makefile-mode'.") |