aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-08-17 14:08:30 +0000
committerKim F. Storm2005-08-17 14:08:30 +0000
commitfbe13428a8eacc89b17eeaedabc117b283b20a7d (patch)
tree7191ed8bec265f44fcfe58fcea3830d46fa9f6e2
parent4ec9e784d6b9baee29d63bae7e78f23a54da9bab (diff)
downloademacs-fbe13428a8eacc89b17eeaedabc117b283b20a7d.tar.gz
emacs-fbe13428a8eacc89b17eeaedabc117b283b20a7d.zip
(insert-for-yank-1): Doc fix.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index f97a2e40f71..fba837212d3 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1597,7 +1597,7 @@ Strip text properties from the inserted text according to
1597 1597
1598If STRING has a non-nil `yank-handler' property on the first character, 1598If STRING has a non-nil `yank-handler' property on the first character,
1599the normal insert behavior is modified in various ways. The value of 1599the normal insert behavior is modified in various ways. The value of
1600the yank-handler property must be a list with one to five elements 1600the yank-handler property must be a list with one to four elements
1601with the following format: (FUNCTION PARAM NOEXCLUDE UNDO). 1601with the following format: (FUNCTION PARAM NOEXCLUDE UNDO).
1602When FUNCTION is present and non-nil, it is called instead of `insert' 1602When FUNCTION is present and non-nil, it is called instead of `insert'
1603 to insert the string. FUNCTION takes one argument--the object to insert. 1603 to insert the string. FUNCTION takes one argument--the object to insert.