Mercurial > emacs
changeset 57792:a32d053617ec
(autoconf-font-lock-keywords): Recognize AS_* too.
author | Simon Josefsson <jas@extundo.com> |
---|---|
date | Fri, 29 Oct 2004 23:34:48 +0000 |
parents | d1b93fc4ce47 |
children | ad073c2f3180 |
files | lisp/progmodes/autoconf.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/autoconf.el Fri Oct 29 22:38:04 2004 +0000 +++ b/lisp/progmodes/autoconf.el Fri Oct 29 23:34:48 2004 +0000 @@ -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,