aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-03-31 16:28:07 +0000
committerRichard M. Stallman2002-03-31 16:28:07 +0000
commit3e505153dab95ddbda1b5a2d91ea23402654f0f1 (patch)
tree6a6a07dc29cf9845eeb8f07656aac6f721c57ab5
parent1fc9ee97d308e1f237b54cb44926da8e18cfe269 (diff)
downloademacs-3e505153dab95ddbda1b5a2d91ea23402654f0f1.tar.gz
emacs-3e505153dab95ddbda1b5a2d91ea23402654f0f1.zip
(kill-new): Doc fix.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/simple.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 755519d93bf..97158273715 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12002-03-31 Richard M. Stallman <rms@gnu.org> 12002-03-31 Richard M. Stallman <rms@gnu.org>
2 2
3 * simple.el (kill-new): Doc fix.
4
3 * emacs-lisp/byte-opt.el (side-effect-free-fns) 5 * emacs-lisp/byte-opt.el (side-effect-free-fns)
4 (side-effect-and-error-free-fns): Add many functions, remove some. 6 (side-effect-and-error-free-fns): Add many functions, remove some.
5 7
diff --git a/lisp/simple.el b/lisp/simple.el
index 14320d46418..eefac3fce0f 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1697,7 +1697,7 @@ ring directly.")
1697 1697
1698(defun kill-new (string &optional replace) 1698(defun kill-new (string &optional replace)
1699 "Make STRING the latest kill in the kill ring. 1699 "Make STRING the latest kill in the kill ring.
1700Set the kill-ring-yank pointer to point to it. 1700Set `kill-ring-yank-pointer' to point to it.
1701If `interprogram-cut-function' is non-nil, apply it to STRING. 1701If `interprogram-cut-function' is non-nil, apply it to STRING.
1702Optional second argument REPLACE non-nil means that STRING will replace 1702Optional second argument REPLACE non-nil means that STRING will replace
1703the front of the kill ring, rather than being added to the list." 1703the front of the kill ring, rather than being added to the list."