From: Dave Love Date: Fri, 2 Oct 1998 14:35:09 +0000 (+0000) Subject: Remove duplicate scheme-mode entry. X-Git-Tag: emacs-20.4~1584 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6480a693a2d702d821c40709965ea975d1ffef7d;p=emacs.git Remove duplicate scheme-mode entry. (info-lookup-make-completions): When looking for entries, check that `item' isn't null or "Menu". --- diff --git a/lisp/info-look.el b/lisp/info-look.el index d1d5661fb8a..44017042776 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -454,12 +454,17 @@ The default file name is the one found at point." (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t) (setq entry (match-string 1) item (funcall trans entry)) - (and (info-lookup->ignore-case topic mode) - (setq item (downcase item))) - (and (string-equal entry item) - (setq entry nil)) - (or (assoc item result) - (setq result (cons (cons item entry) result)))))) + ;; `trans' can return nil if the regexp doesn't match. + (when (and item + ;; Sometimes there's more than one Menu: + (not (string= entry "Menu"))) + (and (info-lookup->ignore-case topic mode) + (setq item (downcase item))) + (and (string-equal entry item) + (setq entry nil)) + (and (or (assoc item result) + (setq result (cons (cons item entry) + result)))))))) (error nil)))) (message "Processing Info node `%s'...done" node) (setq doc-spec (cdr doc-spec))) @@ -711,14 +716,6 @@ Return nil if there is nothing appropriate." :doc-spec '(("(latex2e)Command Index" nil "`" "\\({[^}]*}\\)?'"))) -(info-lookup-maybe-add-help - :mode 'scheme-mode - :regexp ;; "\\(\\sw\\|\\s_\\)+" - "[^()' \t\n]+" - :ignore-case t - ;; Aubrey Jaffer's rendition from - :doc-spec '(("(r5rs)Index"))) - (info-lookup-maybe-add-help :mode 'emacs-lisp-mode :regexp "[^()' \t\n]+" @@ -749,6 +746,7 @@ Return nil if there is nothing appropriate." :mode 'scheme-mode :regexp "[^()' \t\n]+" :ignore-case t + ;; Aubrey Jaffer's rendition from :doc-spec '(("(r5rs)Index" nil "^[ \t]+- [^:]+:[ \t]*" "\\b")))