diff options
| -rw-r--r-- | lisp/macros.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index 42fedffafdc..8770ac58a2f 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -157,7 +157,8 @@ and then select the region of un-tablified names and use (if (not (bolp)) (forward-line 1)) (while (< (point) end-marker) - (execute-kbd-macro (or macro last-kbd-macro)) + (save-excursion + (execute-kbd-macro (or macro last-kbd-macro))) (forward-line 1))))) ;;;###autoload |
