diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-04 06:45:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-04 06:45:41 +0000 |
commit | 16f635545126842f3c732cc7300c92b866d7c826 (patch) | |
tree | 5d46597a31153085cfb97f27a61cb8cd4d143f59 /lisp/macros.el | |
parent | 3f5e6d796bac2a9deccad05a6630dcead8ed4f63 (diff) | |
download | emacs-16f635545126842f3c732cc7300c92b866d7c826.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.el | 2 |
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)) |