diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-07-13 18:34:08 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-07-13 18:34:08 +0000 |
commit | 07b1b9126d535f7ce7908a05cb4da8545ac1766e (patch) | |
tree | 0e2b31bc659f6cfa78cb0484e90c6450f586bd14 /lisp | |
parent | e0f82ad8c8fae8913faf3ec2e4b1a4688c625232 (diff) | |
download | emacs-07b1b9126d535f7ce7908a05cb4da8545ac1766e.tar.gz |
(Info-build-node-completions): Make Info-current-file-completions buffer local.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 16 | ||||
-rw-r--r-- | 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 <monnier@cs.yale.edu> + + * info.el (Info-build-node-completions): + Make Info-current-file-completions buffer local. + 2001-07-13 Gerd Moellmann <gerd@gnu.org> * 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 <gerd@gnu.org> - * 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 <starback@ling.uu.se>. 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." |