# HG changeset patch # User Jesper Harder # Date 1082902082 0 # Node ID 1f59134413ff89d002e4457d48c1854a2b2046c5 # Parent 77a1309e787d98bb196de2a2a5e6302469469282 (info-apropos): Reset Info-complete-cache. diff -r 77a1309e787d -r 1f59134413ff lisp/ChangeLog --- a/lisp/ChangeLog Sun Apr 25 12:57:05 2004 +0000 +++ b/lisp/ChangeLog Sun Apr 25 14:08:02 2004 +0000 @@ -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 -r 77a1309e787d -r 1f59134413ff lisp/info.el --- a/lisp/info.el Sun Apr 25 12:57:05 2004 +0000 +++ b/lisp/info.el Sun Apr 25 14:08:02 2004 +0000 @@ -2467,7 +2467,8 @@ (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."