aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2003-01-21 21:10:40 +0000
committerKim F. Storm <[email protected]>2003-01-21 21:10:40 +0000
commit374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab (patch)
treeeb54efc122194e2ae0fd2e9f64544a3376306287 /lisp
parentb24e2dc7fa9d357edca6fa9f09753ef34f56328b (diff)
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 75d6450c6a..39a6c4680d 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -72,7 +72,7 @@ DOCSTRING is an optional documentation string.
But documentation strings are usually not useful in nameless functions.
INTERACTIVE should be a call to the function `interactive', which see.
It may also be omitted.
-BODY should be a list of lisp expressions."
+BODY should be a list of Lisp expressions."
;; Note that this definition should not use backquotes; subr.el should not
;; depend on backquote.el.
(list 'function (cons 'lambda cdr)))
@@ -1464,7 +1464,7 @@ Replaces `category' properties with their defined properties."
Strip text properties from the inserted text according to
`yank-excluded-properties'. Otherwise just like (insert STRING).
-If STRING has a non-nil yank-handler property on the first character,
+If STRING has a non-nil `yank-handler' property on the first character,
the normal insert behaviour is modified in various ways. The value of
the yank-handler property must be a list with one to five elements
with the following format: (FUNCTION PARAM NOEXCLUDE UNDO COMMAND).