aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-07-18 18:19:18 +0000
committerDave Love2002-07-18 18:19:18 +0000
commit28a2ca5d82c1e04bc698fd28346aa3280c6d93ee (patch)
treebdee8231e538a6a33242db405243c76e1cb4bd9f
parent5fe205f13437d4358a7c13a144ae07d2bec8a2bb (diff)
downloademacs-28a2ca5d82c1e04bc698fd28346aa3280c6d93ee.tar.gz
emacs-28a2ca5d82c1e04bc698fd28346aa3280c6d93ee.zip
Support current auto{conf,make} manuals.
-rw-r--r--lisp/ChangeLog19
-rw-r--r--lisp/info-look.el10
2 files changed, 11 insertions, 18 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c63da8750c3..bb8284e2d59 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12002-07-18 Dave Love <fx@gnu.org>
2
3 * info-look.el: Support current auto{conf,make} manuals.
4
12002-07-18 Juanma Barranquero <lektu@terra.es> 52002-07-18 Juanma Barranquero <lektu@terra.es>
2 6
3 * bindings.el (last-buffer): Add missing frame argument. 7 * bindings.el (last-buffer): Add missing frame argument.
@@ -586,21 +590,6 @@
586 inheriting from the mode-line face, since we can't override it, 590 inheriting from the mode-line face, since we can't override it,
587 and we don't want it for ttys. 591 and we don't want it for ttys.
588 592
5892002-07-02 Dave Love <fx@gnu.org>
590
591 * international/characters.el: Fix general punctuation cases.
592 Remove $,1uf(B case.
593
594 * international/ccl.el (ccl-command-table): Add lookup-character,
595 lookup-integer.
596 (ccl-extended-code-table): Add lookup-int-const-tbl,
597 lookup-char-const-tbl.
598 (ccl-compile-lookup-integer, ccl-compile-lookup-character): New
599 function.
600
601 * international/mule.el (define-translation-hash-table): New
602 function.
603
6042002-07-02 Richard M. Stallman <rms@gnu.org> 5932002-07-02 Richard M. Stallman <rms@gnu.org>
605 594
606 * net/ange-ftp.el (ange-ftp-hook-function): Add file-remote-p prop. 595 * net/ange-ftp.el (ange-ftp-hook-function): Add file-remote-p prop.
diff --git a/lisp/info-look.el b/lisp/info-look.el
index ec5e779d36a..920a9afc977 100644
--- a/lisp/info-look.el
+++ b/lisp/info-look.el
@@ -56,8 +56,7 @@ Setting this variable to nil disables highlighting."
56 "Overlay object used for highlighting.") 56 "Overlay object used for highlighting.")
57 57
58(defcustom info-lookup-file-name-alist 58(defcustom info-lookup-file-name-alist
59 '(("\\`configure\\.in\\'" . autoconf-mode) ;already covered by auto-mode-alist 59 '(("\\`ac\\(local\\|site\\|include\\)\\.m4\\'" . autoconf-mode))
60 ("\\`ac\\(local\\|site\\|include\\)\\.m4\\'" . autoconf-mode))
61 "Alist of file names handled specially. 60 "Alist of file names handled specially.
62List elements are cons cells of the form 61List elements are cons cells of the form
63 62
@@ -672,7 +671,12 @@ Return nil if there is nothing appropriate in the buffer near point."
672(info-lookup-maybe-add-help 671(info-lookup-maybe-add-help
673 :mode 'autoconf-mode 672 :mode 'autoconf-mode
674 :regexp "A[CM]_[_A-Z0-9]+" 673 :regexp "A[CM]_[_A-Z0-9]+"
675 :doc-spec '(("(autoconf)Macro Index" "AC_" 674 :doc-spec '(("(autoconf)Autoconf Macro Index" "AC_"
675 "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>")
676 ("(automake)Macro and Variable Index" nil
677 "^[ \t]*`" "'")
678 ;; These are for older versions (probably pre autoconf 2.5x):
679 ("(autoconf)Macro Index" "AC_"
676 "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>") 680 "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>")
677 ("(automake)Macro and Variable Index" nil 681 ("(automake)Macro and Variable Index" nil
678 "^[ \t]*`" "'")) 682 "^[ \t]*`" "'"))