diff options
| author | Kim F. Storm | 2002-09-11 20:00:58 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-09-11 20:00:58 +0000 |
| commit | 059aa0a7b7744dcd8070eef5df924a561999cb18 (patch) | |
| tree | e91d663cab78248ff7fe73833c049d5d2622d152 | |
| parent | b481ee0495bdb05d581df108b631e1850208ee0d (diff) | |
| download | emacs-059aa0a7b7744dcd8070eef5df924a561999cb18.tar.gz emacs-059aa0a7b7744dcd8070eef5df924a561999cb18.zip | |
(edit-kbd-macro): Recognize new C-x e binding, kmacro-end-and-call-macro.
| -rw-r--r-- | lisp/edmacro.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 9eac3a29055..2526d3bda63 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el | |||
| @@ -105,7 +105,8 @@ 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 (memq cmd '(call-last-kbd-macro kmacro-call-macro kmacro-end-or-call-macro)) | 108 | ((or (memq cmd '(call-last-kbd-macro kmacro-call-macro |
| 109 | kmacro-end-or-call-macro kmacro-end-and-call-macro)) | ||
| 109 | (member keys '("\r" [return]))) | 110 | (member keys '("\r" [return]))) |
| 110 | (or last-kbd-macro | 111 | (or last-kbd-macro |
| 111 | (y-or-n-p "No keyboard macro defined. Create one? ") | 112 | (y-or-n-p "No keyboard macro defined. Create one? ") |