From 07b1b9126d535f7ce7908a05cb4da8545ac1766e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 13 Jul 2001 18:34:08 +0000 Subject: [PATCH] (Info-build-node-completions): Make Info-current-file-completions buffer local. --- lisp/ChangeLog | 16 ++++++++++------ lisp/info.el | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1ff3b7dfd67..d53201863b6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,11 +1,15 @@ +2001-07-13 Stefan Monnier + + * info.el (Info-build-node-completions): + Make Info-current-file-completions buffer local. + 2001-07-13 Gerd Moellmann * which-func.el (which-func-mode, which-func-ff-hook) - (which-function-mode): Remove references to - which-func-mode-global. + (which-function-mode): Remove references to which-func-mode-global. - * calendar/cal-islam.el (calendar-goto-islamic-date): Add - autoload cookie. + * calendar/cal-islam.el (calendar-goto-islamic-date): + Add autoload cookie. * play/fortune.el: Add types to defcustoms. @@ -29,8 +33,8 @@ 2001-07-11 Gerd Moellmann - * mail/mail-extr.el (mail-extr-all-top-level-domains): Increase - the size of the obarray. + * mail/mail-extr.el (mail-extr-all-top-level-domains): + Increase the size of the obarray. (mail-extr-all-top-level-domains): Add more toplevel domains, add more long names. From: Per Starback . diff --git a/lisp/info.el b/lisp/info.el index 301ad5ae606..d29f3c9d55c 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1124,7 +1124,7 @@ If FORK is a string, it is the name to use for the new buffer." (cons (list (match-string-no-properties 1)) compl)))))))) (setq compl (cons '("*") compl)) - (setq Info-current-file-completions compl)))) + (set (make-local-variable 'Info-current-file-completions) compl)))) (defun Info-restore-point (hl) "If this node has been visited, restore the point value when we left." -- 2.39.2