mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(icomplete-get-keys): Look up KEYS using all maps in proper buffer.
This commit is contained in:
parent
d616968003
commit
4afd234b27
@ -1,3 +1,8 @@
|
||||
2008-01-18 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* icomplete.el (icomplete-get-keys):
|
||||
Look up KEYS using all maps in proper buffer.
|
||||
|
||||
2008-01-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
2008-01-17 Miles Bader <miles@gnu.org>
|
||||
|
||||
|
@ -147,8 +147,7 @@ is minibuffer."
|
||||
(save-excursion
|
||||
(let* ((sym (intern func-name))
|
||||
(buf (other-buffer nil t))
|
||||
(map (save-excursion (set-buffer buf) (current-local-map)))
|
||||
(keys (where-is-internal sym map)))
|
||||
(keys (with-current-buffer buf (where-is-internal sym))))
|
||||
(if keys
|
||||
(concat "<"
|
||||
(mapconcat 'key-description
|
||||
|
Loading…
Reference in New Issue
Block a user