From: Dima Kogan Date: Tue, 20 Sep 2016 05:55:34 +0000 (-0700) Subject: Give '$' punctuation syntax in make-mode (Bug#24477) X-Git-Tag: emacs-27.0.90~5028 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4c3cd27df9c0735d907813a8c16a87acc54b9edc;p=emacs.git Give '$' punctuation syntax in make-mode (Bug#24477) * lisp/progmodes/make-mode.el (makefile-mode-syntax-table): Set syntax of '$' to punctuation. --- 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'.")