aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKim F. Storm2003-01-21 21:10:40 +0000
committerKim F. Storm2003-01-21 21:10:40 +0000
commit374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab (patch)
treeeb54efc122194e2ae0fd2e9f64544a3376306287 /lisp
parentb24e2dc7fa9d357edca6fa9f09753ef34f56328b (diff)
downloademacs-374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab.tar.gz
emacs-374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab.zip
Tiny doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 75d6450c6a6..39a6c4680de 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -72,7 +72,7 @@ DOCSTRING is an optional documentation string.
72 But documentation strings are usually not useful in nameless functions. 72 But documentation strings are usually not useful in nameless functions.
73INTERACTIVE should be a call to the function `interactive', which see. 73INTERACTIVE should be a call to the function `interactive', which see.
74It may also be omitted. 74It may also be omitted.
75BODY should be a list of lisp expressions." 75BODY should be a list of Lisp expressions."
76 ;; Note that this definition should not use backquotes; subr.el should not 76 ;; Note that this definition should not use backquotes; subr.el should not
77 ;; depend on backquote.el. 77 ;; depend on backquote.el.
78 (list 'function (cons 'lambda cdr))) 78 (list 'function (cons 'lambda cdr)))
@@ -1464,7 +1464,7 @@ Replaces `category' properties with their defined properties."
1464Strip text properties from the inserted text according to 1464Strip text properties from the inserted text according to
1465`yank-excluded-properties'. Otherwise just like (insert STRING). 1465`yank-excluded-properties'. Otherwise just like (insert STRING).
1466 1466
1467If STRING has a non-nil yank-handler property on the first character, 1467If STRING has a non-nil `yank-handler' property on the first character,
1468the normal insert behaviour is modified in various ways. The value of 1468the normal insert behaviour is modified in various ways. The value of
1469the yank-handler property must be a list with one to five elements 1469the yank-handler property must be a list with one to five elements
1470with the following format: (FUNCTION PARAM NOEXCLUDE UNDO COMMAND). 1470with the following format: (FUNCTION PARAM NOEXCLUDE UNDO COMMAND).