Mercurial > emacs
changeset 62632:71a259bf6342
(yank, yank-pop): Mention `yank-excluded-properties'
and `yank-handler' in the doc strings.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 22 May 2005 20:58:06 +0000 |
parents | 188656dfc0db |
children | 89143bbc7a9c |
files | lisp/simple.el |
diffstat | 1 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Sun May 22 20:15:05 2005 +0000 +++ b/lisp/simple.el Sun May 22 20:58:06 2005 +0000 @@ -2568,7 +2568,11 @@ If N is negative, this is a more recent kill. The sequence of kills wraps around, so that after the oldest one -comes the newest one." +comes the newest one. + +When this command inserts killed text into the buffer, it honors +`yank-excluded-properties' and `yank-handler' as described in the +doc string for `insert-for-yank-1', which see." (interactive "*p") (if (not (eq last-command 'yank)) (error "Previous command was not a yank")) @@ -2600,6 +2604,11 @@ With just \\[universal-argument] as argument, same but put point at beginning (and mark at end). With argument N, reinsert the Nth most recently killed stretch of killed text. + +When this command inserts killed text into the buffer, it honors +`yank-excluded-properties' and `yank-handler' as described in the +doc string for `insert-for-yank-1', which see. + See also the command \\[yank-pop]." (interactive "*P") (setq yank-window-start (window-start))