aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-08-31 23:47:53 +0000
committerLuc Teirlinck2004-08-31 23:47:53 +0000
commit8871f2babc8acf63fd9fbab68dd6d4e04566520f (patch)
tree8ce37e9e6f906185708054372ade1b436383f2db
parent2b1c8da040de829cd62574b24e332097f27493ce (diff)
downloademacs-8871f2babc8acf63fd9fbab68dd6d4e04566520f.tar.gz
emacs-8871f2babc8acf63fd9fbab68dd6d4e04566520f.zip
(Basic Keyboard Macro): `apply-macro-to-region-lines' now operates on
all lines that begin in the region, rather than on all complete lines in the region.
-rw-r--r--man/kmacro.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/man/kmacro.texi b/man/kmacro.texi
index d3c24873cd0..bad186f88b2 100644
--- a/man/kmacro.texi
+++ b/man/kmacro.texi
@@ -71,7 +71,7 @@ Insert in the buffer a keyboard macro's definition, as Lisp code.
71@item C-x C-k e 71@item C-x C-k e
72Edit a previously defined keyboard macro (@code{edit-kbd-macro}). 72Edit a previously defined keyboard macro (@code{edit-kbd-macro}).
73@item C-x C-k r 73@item C-x C-k r
74Run the last keyboard macro on each complete line in the region 74Run the last keyboard macro on each line that begins in the region
75(@code{apply-macro-to-region-lines}). 75(@code{apply-macro-to-region-lines}).
76@end table 76@end table
77 77
@@ -174,8 +174,8 @@ before appending to it.
174@findex apply-macro-to-region-lines 174@findex apply-macro-to-region-lines
175@kindex C-x C-k r 175@kindex C-x C-k r
176 The command @kbd{C-x C-k r} (@code{apply-macro-to-region-lines}) 176 The command @kbd{C-x C-k r} (@code{apply-macro-to-region-lines})
177repeats the last defined keyboard macro on each complete line within 177repeats the last defined keyboard macro on each line that begins in
178the current region. It does this line by line, by moving point to the 178the region. It does this line by line, by moving point to the
179beginning of the line and then executing the macro. 179beginning of the line and then executing the macro.
180 180
181@node Keyboard Macro Ring 181@node Keyboard Macro Ring