diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-09 18:02:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-09 18:02:10 +0000 |
commit | ba7908707488f17f1a72491b23e3f42efd10926d (patch) | |
tree | 870be268c393d150f6708a58f61e47484d95fe6d /lisp/macros.el | |
parent | af400c0042489fe5a420f6739769d75fbc0e5144 (diff) | |
download | emacs-ba7908707488f17f1a72491b23e3f42efd10926d.tar.gz |
Doc fix.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r-- | lisp/macros.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index a6b50c4732a..2ff40f81f9b 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -109,12 +109,13 @@ use this command, and then save the file." With prefix argument, enters recursive edit, reading keyboard commands even within a kbd macro. You can give different commands each time the macro executes. - Without prefix argument, reads a character. Your options are: -Space -- execute the rest of the macro. -DEL -- skip the rest of the macro; start next repetition. -C-d -- skip rest of the macro and don't repeat it any more. -C-r -- enter a recursive edit, then on exit ask again for a character -C-l -- redisplay screen and ask again." + Without prefix argument, asks whether to continue running the macro. +Your options are: \\<query-replace-map> +\\[act] Finish this iteration normally and continue with the next. +\\[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." (interactive "P") (or executing-macro defining-kbd-macro |