diff options
| author | Kim F. Storm | 2003-01-19 00:01:36 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-19 00:01:36 +0000 |
| commit | e3801a7bf025c5ddf27c40d86b3038549b428659 (patch) | |
| tree | f62e319eb57105bcaa3afde24bb425b121faad30 | |
| parent | 8254897f32fd8fc2b50ccda8b7f179f7c020c166 (diff) | |
| download | emacs-e3801a7bf025c5ddf27c40d86b3038549b428659.tar.gz emacs-e3801a7bf025c5ddf27c40d86b3038549b428659.zip | |
(insert-for-yank): Doc fix.
| -rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 54a599c93c9..3a202680103 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1480,8 +1480,8 @@ If NOEXCLUDE is present and non-nil, the normal removal of the | |||
| 1480 | if FUNCTION adjusts point before or after inserting the object. | 1480 | if FUNCTION adjusts point before or after inserting the object. |
| 1481 | If UNDO is present and non-nil, it is a function that will be called | 1481 | If UNDO is present and non-nil, it is a function that will be called |
| 1482 | by `yank-pop' to undo the insertion of the current object. It is | 1482 | by `yank-pop' to undo the insertion of the current object. It is |
| 1483 | called with two arguments | 1483 | called with two arguments, the start and end of the current region. |
| 1484 | FUNCTION may set `yank-undo-function' to override this. | 1484 | FUNCTION may set `yank-undo-function' to override the UNDO value. |
| 1485 | If COMMAND is present and non-nil, `this-command' is set to COMMAND | 1485 | If COMMAND is present and non-nil, `this-command' is set to COMMAND |
| 1486 | after calling FUNCTION (or insert). Note that setting `this-command' | 1486 | after calling FUNCTION (or insert). Note that setting `this-command' |
| 1487 | to a value different from `yank' will prevent `yank-pop' from undoing | 1487 | to a value different from `yank' will prevent `yank-pop' from undoing |