summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorXue Fuqiao <xfq.free@gmail.com>2013-08-16 16:27:49 +0800
committerXue Fuqiao <xfq.free@gmail.com>2013-08-16 16:27:49 +0800
commit907699465f53525f28c3cbdc55cebcc421e0295c (patch)
tree0f42f61b43086afd513e6fa55f19a420bab23af6 /lisp
parent7bef426b5fae3c0041a96cf1a3897e8b3486a673 (diff)
downloademacs-907699465f53525f28c3cbdc55cebcc421e0295c.tar.gz
Reverse previous change, because kill-{new, append} don't have obvious advantage.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el10
2 files changed, 2 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 39279242d37..5edb462adb5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -23,11 +23,6 @@
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
diff --git a/lisp/simple.el b/lisp/simple.el
index bad0449d815..6825c41becc 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -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