]> git.eshelyaron.com Git - emacs.git/commitdiff
(yank, yank-pop): Mention `yank-excluded-properties'
authorEli Zaretskii <eliz@gnu.org>
Sun, 22 May 2005 20:58:52 +0000 (20:58 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 22 May 2005 20:58:52 +0000 (20:58 +0000)
and `yank-handler' in the doc strings.

lisp/ChangeLog
lisp/simple.el

index 12d0697044b04a7bfad7e22734de70d2a46f6bcb..561610f2181140f1de9d182bcc1dc7a887bd4b3f 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-22  Eli Zaretskii  <eliz@gnu.org>
+
+       * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
+       and `yank-handler' in the doc strings.
+
 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
index 5a94c28828d82d016009497d90378f9599a6862e..3c9ea979fedba7f599736441e0ca9fb085dfceb8 100644 (file)
@@ -2568,7 +2568,11 @@ With argument N, insert the Nth previous kill.
 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 @@ killed OR yanked.  Put point at end, and set mark at beginning.
 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))