diff options
author | Juri Linkov <juri@jurta.org> | 2006-02-17 21:54:35 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2006-02-17 21:54:35 +0000 |
commit | 78421c58856357021d07e8f3693a9f46ed3f6470 (patch) | |
tree | 958cc76bdb0f3da41e303a4f7ba4c52944844914 /lisp/icomplete.el | |
parent | dfe7296633a3b574b85adb0e47f2e0bcfee15efa (diff) | |
download | emacs-78421c58856357021d07e8f3693a9f46ed3f6470.tar.gz |
(icomplete-get-keys): Use `t' for the second arg `visible-ok'
of `other-buffer' to find the right original buffer.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 191f1d324e6..f53ef7c91d1 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -146,7 +146,7 @@ is minibuffer." (if (commandp func-name) (save-excursion (let* ((sym (intern func-name)) - (buf (other-buffer)) + (buf (other-buffer nil t)) (map (save-excursion (set-buffer buf) (current-local-map))) (keys (where-is-internal sym map))) (if keys |