aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Josefsson <[email protected]>2004-10-29 23:34:58 +0000
committerSimon Josefsson <[email protected]>2004-10-29 23:34:58 +0000
commit707994d2626cf0f01c3ece4028d73835068d64dc (patch)
treea4063afd0ce3dcca59a549c512ff9100316fb4f7
parentd94dccc60884d8c2b5bed7edbb75da1377acb3a4 (diff)
(autoconf-font-lock-keywords): Recognize AS_* too.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/autoconf.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b73f08a9f1..c22ab994ef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-30 Simon Josefsson <[email protected]>
+
+ * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize
+ AS_* too.
+
2004-10-29 Simon Josefsson <[email protected]>
* subr.el (read-passwd): Move back from password.el.
diff --git a/lisp/progmodes/autoconf.el b/lisp/progmodes/autoconf.el
index 5bdb1fb25e..ec83e33b10 100644
--- a/lisp/progmodes/autoconf.el
+++ b/lisp/progmodes/autoconf.el
@@ -1,6 +1,6 @@
;;; autoconf.el --- mode for editing Autoconf configure.in files
-;; Copyright (C) 2000, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
;; Author: Dave Love <[email protected]>
;; Keywords: languages
@@ -49,7 +49,7 @@
"AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\(\\sw+\\)")
(defvar autoconf-font-lock-keywords
- `(("A[CHM]_\\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,