diff options
| author | Kim F. Storm | 2003-01-21 21:10:40 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-21 21:10:40 +0000 |
| commit | 374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab (patch) | |
| tree | eb54efc122194e2ae0fd2e9f64544a3376306287 /lisp | |
| parent | b24e2dc7fa9d357edca6fa9f09753ef34f56328b (diff) | |
| download | emacs-374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab.tar.gz emacs-374d3fe7e41c0ab8db08a0a8f11ed59c0cfffbab.zip | |
Tiny doc fixes.
Diffstat (limited to 'lisp')
| -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 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. |
| 73 | INTERACTIVE should be a call to the function `interactive', which see. | 73 | INTERACTIVE should be a call to the function `interactive', which see. |
| 74 | It may also be omitted. | 74 | It may also be omitted. |
| 75 | BODY should be a list of lisp expressions." | 75 | BODY 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." | |||
| 1464 | Strip text properties from the inserted text according to | 1464 | Strip 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 | ||
| 1467 | If STRING has a non-nil yank-handler property on the first character, | 1467 | If STRING has a non-nil `yank-handler' property on the first character, |
| 1468 | the normal insert behaviour is modified in various ways. The value of | 1468 | the normal insert behaviour is modified in various ways. The value of |
| 1469 | the yank-handler property must be a list with one to five elements | 1469 | the yank-handler property must be a list with one to five elements |
| 1470 | with the following format: (FUNCTION PARAM NOEXCLUDE UNDO COMMAND). | 1470 | with the following format: (FUNCTION PARAM NOEXCLUDE UNDO COMMAND). |