changeset 53013:764a1df5b26c

(autoconf-font-lock-keywords): Also highlight AH_*.
author Andreas Schwab <schwab@suse.de>
date Fri, 07 Nov 2003 16:08:53 +0000
parents 9c7f73f2f80f
children 6949226f007f
files lisp/progmodes/autoconf.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/autoconf.el	Fri Nov 07 16:05:44 2003 +0000
+++ b/lisp/progmodes/autoconf.el	Fri Nov 07 16:08:53 2003 +0000
@@ -1,10 +1,10 @@
 ;;; autoconf.el --- mode for editing Autoconf configure.in files
 
-;; Copyright (C) 2000 Free Software Foundation, Inc.
+;; Copyright (C) 2000, 2003 Free Software Foundation, Inc.
 
 ;; Author: Dave Love <fx@gnu.org>
 ;; Keywords: languages
-;; $Revision: 1.4 $
+;; $Revision: 1.5 $
 
 ;; This file is part of GNU Emacs.
 
@@ -50,7 +50,7 @@
   "AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\(\\sw+\\)")
 
 (defvar autoconf-font-lock-keywords
-  `(("A[CM]_\\sw+" . font-lock-keyword-face)
+  `(("A[CHM]_\\sw+" . font-lock-keyword-face)
     (,autoconf-definition-regexp
      3 font-lock-function-name-face)
     ;; Are any other M4 keywords really appropriate for configure.in,