From: Jesper Harder Date: Sun, 25 Apr 2004 14:08:02 +0000 (+0000) Subject: (info-apropos): Reset Info-complete-cache. X-Git-Tag: ttn-vms-21-2-B4~6606 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=82f1aca958e38a6747a71d508f40a9a3154fc98b;p=emacs.git (info-apropos): Reset Info-complete-cache. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e6798b48f87..940b6717de4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-04-25 Jesper Harder + + * info.el (info-apropos): Reset Info-complete-cache. + 2004-04-25 Daniel Pfeiffer * progmodes/compile.el (compilation-error-regexp-alist-alist): diff --git a/lisp/info.el b/lisp/info.el index a284ca7fa2e..1bbc35b3fc1 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2467,7 +2467,8 @@ Build a menu of the possible matches." (dolist (entry matches) (insert "* " (car entry) " [" (nth 2 entry) "]: (" (nth 2 entry) ")" (nth 1 entry) ".\n"))) - (Info-find-node "apropos" "top"))))) + (Info-find-node "apropos" "top") + (setq Info-complete-cache nil))))) (defun Info-undefined () "Make command be undefined in Info."