diff options
| author | Juanma Barranquero | 2007-07-16 10:33:02 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-07-16 10:33:02 +0000 |
| commit | 755ab04c0337d1a92db61ca04646230272b17460 (patch) | |
| tree | fcfc18ee486d4becd653666f4ced6cee98c50dfb /src | |
| parent | fc9c3ac9d6441589dcddac6e47e20a34fdd0223b (diff) | |
| download | emacs-755ab04c0337d1a92db61ca04646230272b17460.tar.gz emacs-755ab04c0337d1a92db61ca04646230272b17460.zip | |
(For, Fand, Fprogn): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c index 4ce5c6d05a9..1ea662f8843 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -330,7 +330,7 @@ DEFUN ("or", For, Sor, 0, UNEVALLED, 0, | |||
| 330 | doc: /* Eval args until one of them yields non-nil, then return that value. | 330 | doc: /* Eval args until one of them yields non-nil, then return that value. |
| 331 | The remaining args are not evalled at all. | 331 | The remaining args are not evalled at all. |
| 332 | If all args return nil, return nil. | 332 | If all args return nil, return nil. |
| 333 | usage: (or CONDITIONS ...) */) | 333 | usage: (or CONDITIONS...) */) |
| 334 | (args) | 334 | (args) |
| 335 | Lisp_Object args; | 335 | Lisp_Object args; |
| 336 | { | 336 | { |
| @@ -355,7 +355,7 @@ DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, | |||
| 355 | doc: /* Eval args until one of them yields nil, then return nil. | 355 | doc: /* Eval args until one of them yields nil, then return nil. |
| 356 | The remaining args are not evalled at all. | 356 | The remaining args are not evalled at all. |
| 357 | If no arg yields nil, return the last arg's value. | 357 | If no arg yields nil, return the last arg's value. |
| 358 | usage: (and CONDITIONS ...) */) | 358 | usage: (and CONDITIONS...) */) |
| 359 | (args) | 359 | (args) |
| 360 | Lisp_Object args; | 360 | Lisp_Object args; |
| 361 | { | 361 | { |
| @@ -434,7 +434,7 @@ usage: (cond CLAUSES...) */) | |||
| 434 | 434 | ||
| 435 | DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, | 435 | DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, |
| 436 | doc: /* Eval BODY forms sequentially and return value of last one. | 436 | doc: /* Eval BODY forms sequentially and return value of last one. |
| 437 | usage: (progn BODY ...) */) | 437 | usage: (progn BODY...) */) |
| 438 | (args) | 438 | (args) |
| 439 | Lisp_Object args; | 439 | Lisp_Object args; |
| 440 | { | 440 | { |