aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-09-01 21:26:25 +0000
committerKim F. Storm2002-09-01 21:26:25 +0000
commitf8a14459c553e9fd11b4ef39642f674fd499994a (patch)
tree7956995249fd8ad85da7e24e2c181310b065b277
parent93abbfee57893b22f8f42735f1976245dd82bf63 (diff)
downloademacs-f8a14459c553e9fd11b4ef39642f674fd499994a.tar.gz
emacs-f8a14459c553e9fd11b4ef39642f674fd499994a.zip
(edit-kbd-macro): Recognize new default binding for
C-x e in addition to old binding.
-rw-r--r--lisp/edmacro.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el
index ae1b3f59896..dc538ab5f92 100644
--- a/lisp/edmacro.el
+++ b/lisp/edmacro.el
@@ -105,7 +105,7 @@ With a prefix argument, format the macro in a more concise way."
105 (cond (store-hook 105 (cond (store-hook
106 (setq mac keys) 106 (setq mac keys)
107 (setq cmd nil)) 107 (setq cmd nil))
108 ((or (eq cmd 'call-last-kbd-macro) 108 ((or (memq cmd '(call-last-kbd-macro kmacro-call-macro kmacro-end-or-call-macro))
109 (member keys '("\r" [return]))) 109 (member keys '("\r" [return])))
110 (or last-kbd-macro 110 (or last-kbd-macro
111 (y-or-n-p "No keyboard macro defined. Create one? ") 111 (y-or-n-p "No keyboard macro defined. Create one? ")