changeset 46525:d09ed551daf4

Support current auto{conf,make} manuals.
author Dave Love <fx@gnu.org>
date Thu, 18 Jul 2002 18:18:47 +0000
parents 1a35def1cbe9
children cca2aba11d94
files lisp/info-look.el
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/info-look.el	Thu Jul 18 16:04:01 2002 +0000
+++ b/lisp/info-look.el	Thu Jul 18 18:18:47 2002 +0000
@@ -56,8 +56,7 @@
   "Overlay object used for highlighting.")
 
 (defcustom info-lookup-file-name-alist
-  '(("\\`configure\\.in\\'" . autoconf-mode) ;already covered by auto-mode-alist
-    ("\\`ac\\(local\\|site\\|include\\)\\.m4\\'" . autoconf-mode))
+  '(("\\`ac\\(local\\|site\\|include\\)\\.m4\\'" . autoconf-mode))
   "Alist of file names handled specially.
 List elements are cons cells of the form
 
@@ -672,7 +671,12 @@
 (info-lookup-maybe-add-help
  :mode 'autoconf-mode
  :regexp "A[CM]_[_A-Z0-9]+"
- :doc-spec '(("(autoconf)Macro Index" "AC_"
+ :doc-spec '(("(autoconf)Autoconf Macro Index" "AC_"
+	      "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>")
+	     ("(automake)Macro and Variable Index" nil
+	      "^[ \t]*`" "'")
+	     ;; These are for older versions (probably pre autoconf 2.5x):
+	     ("(autoconf)Macro Index" "AC_"
 	      "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>")
 	     ("(automake)Macro and Variable Index" nil
 	      "^[ \t]*`" "'"))