]> git.eshelyaron.com Git - emacs.git/commitdiff
(autoconf-font-lock-keywords): Recognize AS_* too.
authorSimon Josefsson <jas@extundo.com>
Fri, 29 Oct 2004 23:34:58 +0000 (23:34 +0000)
committerSimon Josefsson <jas@extundo.com>
Fri, 29 Oct 2004 23:34:58 +0000 (23:34 +0000)
lisp/ChangeLog
lisp/progmodes/autoconf.el

index b73f08a9f1f9934b3dc594c10fd6fd5fea09fb68..c22ab994eff4cff364c325ff948685b87f1a9830 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-30  Simon Josefsson  <jas@extundo.com>
+
+       * progmodes/autoconf.el (autoconf-font-lock-keywords): Recognize
+       AS_* too.
+
 2004-10-29  Simon Josefsson  <jas@extundo.com>
 
        * subr.el (read-passwd): Move back from password.el.
index 5bdb1fb25ebad986f94a56d7f866e48e7c67558d..ec83e33b10df37b97800dbc922654c7f35d0ce98 100644 (file)
@@ -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 <fx@gnu.org>
 ;; 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,