]> git.eshelyaron.com Git - emacs.git/commitdiff
(info-lookup-setup-mode): Don't give up, if
authorKarl Heuer <kwzh@gnu.org>
Thu, 22 Jul 1999 00:45:00 +0000 (00:45 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 22 Jul 1999 00:45:00 +0000 (00:45 +0000)
info-lookup-make-completions returns an error.
(info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
name latex, not latex2e.

lisp/info-look.el

index 943ae3bad0e28e3dbfdac7b47936b94d876dc319..9b1bdc791f15e9ef900a2d7c4519e4232eb6eb71 100644 (file)
@@ -400,7 +400,9 @@ The default file name is the one found at point."
          (setq refer-modes (nreverse refer-modes))
          ;; Build the full completion alist.
          (setq completions
-               (nconc (info-lookup-make-completions topic mode)
+               (nconc (condition-case nil
+                          (info-lookup-make-completions topic mode)
+                        (error nil))
                       (apply 'append
                              (mapcar (lambda (arg)
                                        (info-lookup->completions topic arg))
@@ -712,7 +714,7 @@ Return nil if there is nothing appropriate."
 (info-lookup-maybe-add-help
  :mode 'latex-mode
  :regexp "\\\\\\([a-zA-Z]+\\|[^a-zA-Z]\\)"
- :doc-spec '(("(latex2e)Command Index" nil
+ :doc-spec '(("(latex)Command Index" nil
              "`" "\\({[^}]*}\\)?'")))
 
 (info-lookup-maybe-add-help