# HG changeset patch # User Eli Zaretskii # Date 1116795486 0 # Node ID 71a259bf63421bb34ff86af7f388721d578953ab # Parent 188656dfc0dbd03b7c2f9a5282f552cd0746dd8b (yank, yank-pop): Mention `yank-excluded-properties' and `yank-handler' in the doc strings. diff -r 188656dfc0db -r 71a259bf6342 lisp/simple.el --- 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))