diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-19 18:49:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-19 18:49:48 +0000 |
commit | 4ebd79c7756fa0f0c40994baf0e999f9aa6d83b9 (patch) | |
tree | ccecac0210d42b7120d4bed2284e024a91ba7579 /lisp/help-macro.el | |
parent | 6b69589527ac5b7d7e4d3d5367146de36f041364 (diff) | |
download | emacs-4ebd79c7756fa0f0c40994baf0e999f9aa6d83b9.tar.gz |
(make-help-screen): Use *only* local-map to look up keys.
Diffstat (limited to 'lisp/help-macro.el')
-rw-r--r-- | lisp/help-macro.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 1e70992e296..1053b4161b6 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el @@ -150,9 +150,7 @@ and then returns." (setq unread-command-events (cons char unread-command-events) config nil) - (let ((defn - (let ((overriding-local-map local-map)) - (key-binding key)))) + (let ((defn (lookup-key local-map key))) (if defn (progn (if config |