[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r113919: Reverse previous change, because kill-{new,
From: |
Xue Fuqiao |
Subject: |
[Emacs-diffs] trunk r113919: Reverse previous change, because kill-{new, append} don't have obvious advantage. |
Date: |
Fri, 16 Aug 2013 08:29:12 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 113919
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Fri 2013-08-16 16:27:49 +0800
message:
Reverse previous change, because kill-{new, append} don't have obvious
advantage.
modified:
doc/lispref/text.texi text.texi-20091113204419-o5vbwnq5f7feedwu-6215
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/simple.el simple.el-20091113204419-o5vbwnq5f7feedwu-403
=== modified file 'doc/lispref/text.texi'
--- a/doc/lispref/text.texi 2013-08-16 08:11:44 +0000
+++ b/doc/lispref/text.texi 2013-08-16 08:27:49 +0000
@@ -924,6 +924,7 @@
text anyway.)
@end defun
address@hidden 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}
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2013-08-16 08:11:44 +0000
+++ b/lisp/ChangeLog 2013-08-16 08:27:49 +0000
@@ -23,11 +23,6 @@
New functions.
(image-animate-timeout): Respect image :speed property.
-2013-08-16 Xue Fuqiao <address@hidden>
-
- * simple.el (copy-region-as-kill, kill-ring-save): Advertise using
- `kill-new' and `kill-append' in Lisp programs.
-
2013-08-15 Stefan Monnier <address@hidden>
* emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
=== modified file 'lisp/simple.el'
--- a/lisp/simple.el 2013-08-16 08:11:44 +0000
+++ b/lisp/simple.el 2013-08-16 08:27:49 +0000
@@ -3622,10 +3622,7 @@
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 @@
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r113919: Reverse previous change, because kill-{new, append} don't have obvious advantage.,
Xue Fuqiao <=