emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r112993: * make-mode.el (makefile-mode-syntax-table)


From: Glenn Morris
Subject: [Emacs-diffs] trunk r112993: * make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation.
Date: Sat, 15 Jun 2013 02:25:14 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112993
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/14614
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2013-06-14 19:25:00 -0700
message:
  * make-mode.el (makefile-mode-syntax-table): Treat "=" as punctuation.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/make-mode.el    makemode.el-20091113204419-o5vbwnq5f7feedwu-496
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-06-15 01:12:05 +0000
+++ b/lisp/ChangeLog    2013-06-15 02:25:00 +0000
@@ -1,3 +1,8 @@
+2013-06-15  Glenn Morris  <address@hidden>
+
+       * progmodes/make-mode.el (makefile-mode-syntax-table):
+       Treat "=" as punctuation.  (Bug#14614)
+
 2013-06-15  Juanma Barranquero  <address@hidden>
 
        * help-fns.el (describe-variable):

=== modified file 'lisp/progmodes/make-mode.el'
--- a/lisp/progmodes/make-mode.el       2013-05-09 01:40:20 +0000
+++ b/lisp/progmodes/make-mode.el       2013-06-15 02:25:00 +0000
@@ -712,7 +712,9 @@
     (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)))


reply via email to

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