diff options
author | Chong Yidong <cyd@gnu.org> | 2012-09-22 23:24:26 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-09-22 23:24:26 +0800 |
commit | c88b867fecbd50140b0b41f05599811a8f0e3dfe (patch) | |
tree | 945c6c88a7ce2029d13af7007239e8253e1e6a44 /lisp/repeat.el | |
parent | bb4d86b40c61443608280df3d0668d44845177a5 (diff) | |
download | emacs-c88b867fecbd50140b0b41f05599811a8f0e3dfe.tar.gz |
Misc doc fixes.
* searching.texi (Replacing Match): Minor clarification.
* lisp/repeat.el (repeat): Doc fix.
* lisp/simple.el (shell-command-on-region): Doc fix.
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
* cmds.c (Fforward_char, Fbackward_char): Doc fix.
* editfns.c (Fline_beginning_position): Doc fix.
(Fline_end_position): Doc fix.
* minibuf.c (Finternal_complete_buffer): Doc fix.
* search.c (Freplace_match): Doc fix.
Fixes: debbugs:12325 debbugs:12391 debbugs:12416 debbugs:12414 debbugs:10909 debbugs:12348
Diffstat (limited to 'lisp/repeat.el')
-rw-r--r-- | lisp/repeat.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/repeat.el b/lisp/repeat.el index e577c461bc5..e38442a434b 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el @@ -193,9 +193,9 @@ this function is always whether the value of `this-command' would've been ;;;###autoload (defun repeat (repeat-arg) "Repeat most recently executed command. -With prefix arg, apply new prefix arg to that command; otherwise, -use the prefix arg that was used before (if any). -This command is like the `.' command in the vi editor. +If REPEAT-ARG is non-nil (interactively, with a prefix argument), +supply a prefix argument to that command. Otherwise, give the +command the same prefix argument it was given before, if any. If this command is invoked by a multi-character key sequence, it can then be repeated by repeating the final character of that |