]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/m4-mode.el (m4-mode-syntax-table):
authorTom Tromey <tromey@redhat.com>
Wed, 8 May 2013 06:43:42 +0000 (23:43 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 May 2013 06:43:42 +0000 (23:43 -0700)
Do not treat "_" as word constituent.

Fixes: debbugs:14167
lisp/ChangeLog
lisp/progmodes/m4-mode.el

index 7f43a3634d9a00806a8b41744b1298609e845b46..f1aa40ccc9a86c1c5244bcbe9a5fdfd7105c6a62 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-08  Tom Tromey  <tromey@redhat.com>
+
+       * progmodes/m4-mode.el (m4-mode-syntax-table):
+       Do not treat "_" as word constituent.  (Bug#14167)
+
 2013-05-07  Glenn Morris  <rgm@gnu.org>
 
        * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
index 0641fc776de6d67e8e1b2df8f6ebffe2acf2e1cc..ffd79b354d5346d3e3122010f0b256c854eee644 100644 (file)
@@ -95,7 +95,7 @@
 (modify-syntax-entry ?{  "_" m4-mode-syntax-table)
 (modify-syntax-entry ?}  "_" m4-mode-syntax-table)
 (modify-syntax-entry ?*  "w" m4-mode-syntax-table)
-(modify-syntax-entry ?_  "w" m4-mode-syntax-table)
+(modify-syntax-entry ?_  "_" m4-mode-syntax-table)
 (modify-syntax-entry ?\"  "w" m4-mode-syntax-table)
 (modify-syntax-entry ?\"  "w" m4-mode-syntax-table)