diff options
| -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. |