diff options
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/info-look.el | 10 |
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 @@ | |||
| 1 | 2002-07-18 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * info-look.el: Support current auto{conf,make} manuals. | ||
| 4 | |||
| 1 | 2002-07-18 Juanma Barranquero <lektu@terra.es> | 5 | 2002-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 | ||
| 589 | 2002-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 | |||
| 604 | 2002-07-02 Richard M. Stallman <rms@gnu.org> | 593 | 2002-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. |
| 62 | List elements are cons cells of the form | 61 | List 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]*`" "'")) |