diff options
author | David Burger <dburger@google.com> | 2010-02-03 21:14:36 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-02-03 21:14:36 -0800 |
commit | b003beb193335bd5c0e6d78a16c49f94e4dd7722 (patch) | |
tree | c0e2452c49b82658cad266abd4287eacab6f27de /lisp/macros.el | |
parent | a03ae20dc626510a7e05d5dd8cb7e853d70f2b49 (diff) | |
download | emacs-b003beb193335bd5c0e6d78a16c49f94e4dd7722.tar.gz |
Close bug#5485.
David Burger <dburger at google.com> (tiny change)
* macros.el (apply-macro-to-region-lines): Minor simplification.
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 ef167bd6906..4188a432fe5 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -273,7 +273,7 @@ and then select the region of un-tablified names and use (set-marker next-line-marker (point))) (save-excursion (let ((mark-active nil)) - (execute-kbd-macro (or macro last-kbd-macro))))) + (execute-kbd-macro macro)))) (set-marker end-marker nil) (set-marker next-line-marker nil)))) |