]> git.eshelyaron.com Git - emacs.git/commitdiff
Reverse previous change, because kill-{new, append} don't have obvious advantage.
authorXue Fuqiao <xfq.free@gmail.com>
Fri, 16 Aug 2013 08:27:49 +0000 (16:27 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Fri, 16 Aug 2013 08:27:49 +0000 (16:27 +0800)
doc/lispref/text.texi
lisp/ChangeLog
lisp/simple.el

index b97faf54752a3a585689c27c029e797985edf451..3057b40066f0eb629cc8bd9bb2673871ffb1985a 100644 (file)
@@ -924,6 +924,7 @@ processes the text according to @code{yank-handled-properties} and
 text anyway.)
 @end defun
 
+@c FIXME: Add an index for yank-handler.
   If you put a @code{yank-handler} text property on all or part of a
 string, that alters how @code{insert-for-yank} inserts the string.  If
 different parts of the string have different @code{yank-handler}
index 39279242d37a62d588318315e89a69dfa8f5c1cd..5edb462adb516a29b096ad64e8915907384be09b 100644 (file)
        New functions.
        (image-animate-timeout): Respect image :speed property.
 
-2013-08-16  Xue Fuqiao  <xfq.free@gmail.com>
-
-       * simple.el (copy-region-as-kill, kill-ring-save): Advertise using
-       `kill-new' and `kill-append' in Lisp programs.
-
 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
index bad0449d815ec2cb72b8a5aa4321333b571e7a82..6825c41becc14e2dc5a73b36ea2db78b49a66116 100644 (file)
@@ -3622,10 +3622,7 @@ In Transient Mark mode, deactivate the mark.
 If `interprogram-cut-function' is non-nil, also save the text for a window
 system cut and paste.
 
-This command's old key binding has been given to `kill-ring-save'.
-
-Do not use this function in Lisp programs, use `kill-new' or
-`kill-append' instead."
+This command's old key binding has been given to `kill-ring-save'."
   (interactive "r")
   (if (eq last-command 'kill-region)
       (kill-append (filter-buffer-substring beg end) (< end beg))
@@ -3643,10 +3640,7 @@ If you want to append the killed line to the last killed text,
 use \\[append-next-kill] before \\[kill-ring-save].
 
 This command is similar to `copy-region-as-kill', except that it gives
-visual feedback indicating the extent of the region being copied.
-
-Do not use this function in Lisp programs, use `kill-new' or
-`kill-append' instead."
+visual feedback indicating the extent of the region being copied."
   (interactive "r")
   (copy-region-as-kill beg end)
   ;; This use of called-interactively-p is correct because the code it