Mercurial > emacs
changeset 68747:d8d4d5dad20e
(autoconf-font-lock-keywords): Check start boundary of symbols.
author | Masatake YAMATO <jet@gyve.org> |
---|---|
date | Thu, 09 Feb 2006 19:15:46 +0000 |
parents | 3741bfb4402f |
children | 51fd7d4e1d8a |
files | lisp/ChangeLog lisp/progmodes/autoconf.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Feb 09 19:06:33 2006 +0000 +++ b/lisp/ChangeLog Thu Feb 09 19:15:46 2006 +0000 @@ -1,3 +1,8 @@ +2006-02-09 Masatake YAMATO <jet@gyve.org> + + * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start + boundary of symbols. + 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change) * vc-svn.el (vc-svn-print-log): Show recent commits as well.
--- a/lisp/progmodes/autoconf.el Thu Feb 09 19:06:33 2006 +0000 +++ b/lisp/progmodes/autoconf.el Thu Feb 09 19:15:46 2006 +0000 @@ -52,7 +52,7 @@ "AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\(\\sw+\\)") (defvar autoconf-font-lock-keywords - `(("A[CHMS]_\\sw+" . font-lock-keyword-face) + `(("\\_<A[CHMS]_\\sw+" . font-lock-keyword-face) (,autoconf-definition-regexp 3 font-lock-function-name-face) ;; Are any other M4 keywords really appropriate for configure.in,