aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-03-11 15:09:48 +0000
committerRichard M. Stallman2006-03-11 15:09:48 +0000
commit66e9b2b244a03a1cb973ef1e1a909c8d232dcc82 (patch)
tree829c3a4f59865f83e7a1f4fad84f8e6483858cc1
parent76815b2a6df7ae69ddb2f34e4db409ed180e96af (diff)
downloademacs-66e9b2b244a03a1cb973ef1e1a909c8d232dcc82.tar.gz
emacs-66e9b2b244a03a1cb973ef1e1a909c8d232dcc82.zip
(kill-region, yank): Doc fix.
-rw-r--r--lisp/simple.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 685e6f2788b..9ffd974311d 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -2506,8 +2506,8 @@ yanking point; just return the Nth kill forward."
2506(put 'text-read-only 'error-message "Text is read-only") 2506(put 'text-read-only 'error-message "Text is read-only")
2507 2507
2508(defun kill-region (beg end &optional yank-handler) 2508(defun kill-region (beg end &optional yank-handler)
2509 "Kill between point and mark. 2509 "Kill (\"cut\") text between point and mark.
2510The text is deleted but saved in the kill ring. 2510This deletes the text from the buffer and saves it in the kill ring.
2511The command \\[yank] can retrieve it from there. 2511The command \\[yank] can retrieve it from there.
2512\(If you want to kill and then yank immediately, use \\[kill-ring-save].) 2512\(If you want to kill and then yank immediately, use \\[kill-ring-save].)
2513 2513
@@ -2690,7 +2690,7 @@ doc string for `insert-for-yank-1', which see."
2690 nil) 2690 nil)
2691 2691
2692(defun yank (&optional arg) 2692(defun yank (&optional arg)
2693 "Reinsert the last stretch of killed text. 2693 "Reinsert (\"past") the last stretch of killed text.
2694More precisely, reinsert the stretch of killed text most recently 2694More precisely, reinsert the stretch of killed text most recently
2695killed OR yanked. Put point at end, and set mark at beginning. 2695killed OR yanked. Put point at end, and set mark at beginning.
2696With just \\[universal-argument] as argument, same but put point at beginning (and mark at end). 2696With just \\[universal-argument] as argument, same but put point at beginning (and mark at end).