emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 4c3cd27 4/4: Give '$' punctuation syntax in make-mo


From: Noam Postavsky
Subject: [Emacs-diffs] master 4c3cd27 4/4: Give '$' punctuation syntax in make-mode (Bug#24477)
Date: Tue, 15 May 2018 20:12:23 -0400 (EDT)

branch: master
commit 4c3cd27df9c0735d907813a8c16a87acc54b9edc
Author: Dima Kogan <address@hidden>
Commit: Noam Postavsky <address@hidden>

    Give '$' punctuation syntax in make-mode (Bug#24477)
    
    * lisp/progmodes/make-mode.el (makefile-mode-syntax-table): Set syntax
    of '$' to punctuation.
---
 lisp/progmodes/make-mode.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index ba2b1cb..f67407f 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'.")
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]