From 82f1aca958e38a6747a71d508f40a9a3154fc98b Mon Sep 17 00:00:00 2001 From: Jesper Harder Date: Sun, 25 Apr 2004 14:08:02 +0000 Subject: [PATCH] (info-apropos): Reset Info-complete-cache. --- lisp/ChangeLog | 4 ++++ lisp/info.el | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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." -- 2.39.5