+2002-12-27 Miles Bader <miles@gnu.org>
+
+ * info.el (Info-complete-menu-item): Make `Info-complete-cache' a
+ buffer-local variable.
+
2002-12-26 Markus Rost <rost@math.ohio-state.edu>
* cus-edit.el (customize-group-other-window): Use pop-to-buffer in
(unless (equal Info-current-node orignode)
(Info-goto-node orignode))
;; Update the cache.
- (setq Info-complete-cache
- (list Info-current-file Info-current-node
- Info-complete-next-re string completions)))
+ (set (make-local-variable 'Info-complete-cache)
+ (list Info-current-file Info-current-node
+ Info-complete-next-re string completions)))
(if action
(all-completions string completions predicate)
(try-completion string completions predicate)))))))