summaryrefslogtreecommitdiff
path: root/lisp/macros.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-02-04 06:45:41 +0000
committerRichard M. Stallman <rms@gnu.org>1994-02-04 06:45:41 +0000
commit575b3b690490809eb547cedf22b537431cb2edcc (patch)
treeda2ad1ce34d82917ea75ac669b621f4b3b5976a4 /lisp/macros.el
parentea158007079e130e435ed71f7218a959e85b4e78 (diff)
downloademacs-575b3b690490809eb547cedf22b537431cb2edcc.tar.gz
(insert-kbd-macro): Pass (keymap) as KEYMAP arg to where-is-internal.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r--lisp/macros.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/macros.el b/lisp/macros.el
index 1e093a7630a..cbb612494b0 100644
--- a/lisp/macros.el
+++ b/lisp/macros.el
@@ -95,7 +95,7 @@ use this command, and then save the file."
(insert "\\M-C-?"))))))
(insert ")\n")
(if keys
- (let ((keys (where-is-internal macroname nil)))
+ (let ((keys (where-is-internal macroname '(keymap))))
(while keys
(insert "(global-set-key ")
(prin1 (car keys) (current-buffer))