diff options
| author | Richard M. Stallman | 2002-03-31 16:28:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-03-31 16:28:07 +0000 |
| commit | 3e505153dab95ddbda1b5a2d91ea23402654f0f1 (patch) | |
| tree | 6a6a07dc29cf9845eeb8f07656aac6f721c57ab5 | |
| parent | 1fc9ee97d308e1f237b54cb44926da8e18cfe269 (diff) | |
| download | emacs-3e505153dab95ddbda1b5a2d91ea23402654f0f1.tar.gz emacs-3e505153dab95ddbda1b5a2d91ea23402654f0f1.zip | |
(kill-new): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
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 @@ | |||
| 1 | 2002-03-31 Richard M. Stallman <rms@gnu.org> | 1 | 2002-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. |
| 1700 | Set the kill-ring-yank pointer to point to it. | 1700 | Set `kill-ring-yank-pointer' to point to it. |
| 1701 | If `interprogram-cut-function' is non-nil, apply it to STRING. | 1701 | If `interprogram-cut-function' is non-nil, apply it to STRING. |
| 1702 | Optional second argument REPLACE non-nil means that STRING will replace | 1702 | Optional second argument REPLACE non-nil means that STRING will replace |
| 1703 | the front of the kill ring, rather than being added to the list." | 1703 | the front of the kill ring, rather than being added to the list." |