From: David Burger Date: Thu, 4 Feb 2010 05:14:36 +0000 (-0800) Subject: Close bug#5485. X-Git-Tag: emacs-pretest-23.1.93~114 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b003beb193335bd5c0e6d78a16c49f94e4dd7722;p=emacs.git Close bug#5485. David Burger (tiny change) * macros.el (apply-macro-to-region-lines): Minor simplification. --- 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 (tiny change) + + * macros.el (apply-macro-to-region-lines): + Minor simplification. (Bug#5485) + 2010-02-04 Glenn Morris * 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))))