diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-12-27 08:04:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-12-27 08:04:05 +0000 |
commit | fcd66424787c4aa626951039dfea5a480bb6d9a4 (patch) | |
tree | 5614c741afd1c1b2902daab8bce94cc3f44199c8 /lisp/edmacro.el | |
parent | e5e89e484c07d5c3db5a15bda4e000de7d4c0a83 (diff) | |
download | emacs-fcd66424787c4aa626951039dfea5a480bb6d9a4.tar.gz emacs-fcd66424787c4aa626951039dfea5a480bb6d9a4.tar.bz2 emacs-fcd66424787c4aa626951039dfea5a480bb6d9a4.zip |
(edit-kbd-macro): Recognize electric-view-lossage.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 150160c802d..1b8a3b569c6 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -119,7 +119,7 @@ With a prefix argument, format the macro in a more concise way." (if (string-equal cmd "") (error "No command name given")) (setq mac (symbol-function cmd))) - ((eq cmd 'view-lossage) + ((memq cmd '(view-lossage electric-view-lossage)) (setq mac (recent-keys)) (setq cmd 'last-kbd-macro)) ((null cmd) |