Support current auto{conf,make} manuals.

This commit is contained in:
Dave Love 2002-07-18 10:34:21 +00:00
parent c26245b5ac
commit 5d8f087cb8
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-07-18 Dave Love <fx@gnu.org>
* info-look.el: Support current auto{conf,make} manuals.
2002-07-16 Dave Love <fx@gnu.org>
* international/utf-8.el (ccl-decode-mule-utf-8): Fix >= #xfe case.

View file

@ -668,7 +668,12 @@ Return nil if there is nothing appropriate in the buffer near point."
(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)Index" nil
"^[ \t]*`" "'"))