summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Burger <dburger@google.com>2010-02-03 21:14:36 -0800
committerGlenn Morris <rgm@gnu.org>2010-02-03 21:14:36 -0800
commitb003beb193335bd5c0e6d78a16c49f94e4dd7722 (patch)
treec0e2452c49b82658cad266abd4287eacab6f27de
parenta03ae20dc626510a7e05d5dd8cb7e853d70f2b49 (diff)
downloademacs-b003beb193335bd5c0e6d78a16c49f94e4dd7722.tar.gz
Close bug#5485.
David Burger <dburger at google.com> (tiny change) * macros.el (apply-macro-to-region-lines): Minor simplification.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/macros.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f81a3d16913..de3446fd524 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-04 David Burger <dburger@google.com> (tiny change)
+
+ * macros.el (apply-macro-to-region-lines):
+ Minor simplification. (Bug#5485)
+
2010-02-04 Glenn Morris <rgm@gnu.org>
* mail/rmail.el (rmail-show-message-1): Handle malformed
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))))