aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-12-27 08:04:05 +0000
committerRichard M. Stallman1998-12-27 08:04:05 +0000
commitfcd66424787c4aa626951039dfea5a480bb6d9a4 (patch)
tree5614c741afd1c1b2902daab8bce94cc3f44199c8
parente5e89e484c07d5c3db5a15bda4e000de7d4c0a83 (diff)
downloademacs-fcd66424787c4aa626951039dfea5a480bb6d9a4.tar.gz
emacs-fcd66424787c4aa626951039dfea5a480bb6d9a4.zip
(edit-kbd-macro): Recognize electric-view-lossage.
-rw-r--r--lisp/edmacro.el2
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."
119 (if (string-equal cmd "") 119 (if (string-equal cmd "")
120 (error "No command name given")) 120 (error "No command name given"))
121 (setq mac (symbol-function cmd))) 121 (setq mac (symbol-function cmd)))
122 ((eq cmd 'view-lossage) 122 ((memq cmd '(view-lossage electric-view-lossage))
123 (setq mac (recent-keys)) 123 (setq mac (recent-keys))
124 (setq cmd 'last-kbd-macro)) 124 (setq cmd 'last-kbd-macro))
125 ((null cmd) 125 ((null cmd)