diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-05-25 21:08:21 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-05-25 21:08:21 +0000 |
commit | 01e1a81920aa4e805b1c2ab0e13472094e991979 (patch) | |
tree | 1e65df05f1068874f60d9c7b3e8b5efab76e1047 /lisp/info-look.el | |
parent | 56613f06dc32f78043cae1d4dbb5a59cc2b98b62 (diff) | |
download | emacs-01e1a81920aa4e805b1c2ab0e13472094e991979.tar.gz |
(autoconf-mode setups): Recognise AH_ and AU_ entries in "(autoconf)Autoconf
Macro Index". Add "(autoconf)M4 Macro Index" and "(autoconf)Autotest Macro
Index". Remove duplicate copy of "(automake)Macro and Variable Index". Keep
automake after all autoconf possibilities, so as to prefer those.
Diffstat (limited to 'lisp/info-look.el')
-rw-r--r-- | lisp/info-look.el | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/lisp/info-look.el b/lisp/info-look.el index e81d33e65f2..afdf123ecb0 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -682,13 +682,37 @@ 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)Autoconf Macro Index" "AC_" + :doc-spec '(;; Autoconf Macro Index entries are without an "AC_" prefix, + ;; but with "AH_" or "AU_" for those. So add "AC_" if there + ;; isn't already an "A._". + ("(autoconf)Autoconf Macro Index" + (lambda (item) + (if (string-match "^A._" item) item (concat "AC_" item))) "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>") - ("(automake)Macro and Variable Index" nil - "^[ \t]*`" "'") - ;; These are for older versions (probably pre autoconf 2.5x): + ;; M4 Macro Index entries are without "AS_" prefixes, and + ;; mostly without "m4_" prefixes. "dnl" is an exception, not + ;; wanting any prefix. So AS_ is added back to upper-case + ;; names, m4_ to others which don't already an m4_. + ("(autoconf)M4 Macro Index" + (lambda (item) + (let ((case-fold-search nil)) + (cond ((or (string-equal item "dnl") + (string-match "^m4_" item)) + item) + ((string-match "^[A-Z0-9_]+$" item) + (concat "AS_" item)) + (t + (concat "m4_" item))))) + "^[ \t]+- Macro: .*\\<" "\\>") + ;; Autotest Macro Index entries are without "AT_". + ("(autoconf)Autotest Macro Index" "AT_" + "^[ \t]+- Macro: .*\\<" "\\>") + ;; This is for older versions (probably pre autoconf 2.5x): ("(autoconf)Macro Index" "AC_" "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>") + ;; Automake has index entries for its notes on various autoconf + ;; macros (eg. AC_PROG_CC). Ensure this is after the autoconf + ;; index, so as to prefer the autoconf docs. ("(automake)Macro and Variable Index" nil "^[ \t]*`" "'")) ;; Autoconf symbols are M4 macros. Thus use M4's parser. |