1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

* progmodes/cc-langs.el (c-symbol-start): Include char _.

Fixes: debbugs:11986
This commit is contained in:
Leo Liu 2012-07-20 19:36:41 +08:00
parent 23dc774492
commit 542dfbde70
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-07-20 Leo Liu <sdl.web@gmail.com>
* progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
* userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.

View File

@ -578,7 +578,7 @@ keyword. It's unspecified how far it matches. Does not contain a \\|
operator at the top level."
t (concat "[" c-alpha "_]")
java (concat "[" c-alpha "_@]")
objc (concat "[" c-alpha "@]")
objc (concat "[" c-alpha "_@]")
pike (concat "[" c-alpha "_`]"))
(c-lang-defvar c-symbol-start (c-lang-const c-symbol-start))