diff options
| author | Richard M. Stallman | 1994-12-15 18:25:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-12-15 18:25:24 +0000 |
| commit | bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e (patch) | |
| tree | fb9fe966089ce2602a733f6e9711d498c74b67da | |
| parent | 88f11b7de7870a9ba654c7532118ffb468999b5b (diff) | |
| download | emacs-bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e.tar.gz emacs-bec0d7f9d9f42d38d32f58203491b8a4de6c5b2e.zip | |
(lambda): Doc fix.
| -rw-r--r-- | lisp/subr.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 6523e48bdb4..427189f64a2 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -28,8 +28,9 @@ | |||
| 28 | A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is | 28 | A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is |
| 29 | self-quoting; the result of evaluating the lambda expression is the | 29 | self-quoting; the result of evaluating the lambda expression is the |
| 30 | expression itself. The lambda expression may then be treated as a | 30 | expression itself. The lambda expression may then be treated as a |
| 31 | function, i. e. stored as the function value of a symbol, passed to | 31 | function, i.e., stored as the function value of a symbol, passed to |
| 32 | funcall or mapcar, etcetera. | 32 | funcall or mapcar, etc. |
| 33 | |||
| 33 | ARGS should take the same form as an argument list for a `defun'. | 34 | ARGS should take the same form as an argument list for a `defun'. |
| 34 | DOCSTRING should be a string, as described for `defun'. It may be omitted. | 35 | DOCSTRING should be a string, as described for `defun'. It may be omitted. |
| 35 | INTERACTIVE should be a call to the function `interactive', which see. | 36 | INTERACTIVE should be a call to the function `interactive', which see. |