diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:49:07 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:49:07 +0000 |
commit | 6ec1c571bb5b77585bf3cae95f70b9d9ae94f9d4 (patch) | |
tree | 7e008cc779081f1d505dad29f70ef42f22ace831 /lisp/macros.el | |
parent | 228899a5b2aa6eb275d4b34a7695764eaa0e248d (diff) | |
download | emacs-6ec1c571bb5b77585bf3cae95f70b9d9ae94f9d4.tar.gz |
(kbd-macro-query): Set help-mode in *Help* buffer.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r-- | lisp/macros.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index 8a921ac8d07..afae6e44500 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -177,8 +177,10 @@ Possibilities: \\<query-replace-map> \\[skip] Skip the rest of this iteration, and start the next. \\[exit] Stop the macro entirely right now. \\[recenter] Redisplay the screen, then ask again. -\\[edit] Enter recursive edit; ask again when you exit from that.")))) - ))))))) +\\[edit] Enter recursive edit; ask again when you exit from that.")) + (save-excursion + (set-buffer standard-output) + (help-mode))))))))))) ;;;###autoload (defun apply-macro-to-region-lines (top bottom &optional macro) |