diff options
| author | Juanma Barranquero | 2007-07-18 11:48:47 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-07-18 11:48:47 +0000 |
| commit | 533eb34b776ae6b7e8ae8c4dd6eb94e7708d666b (patch) | |
| tree | aff46088783c37631befc78c4af253ce4b8f4a07 /src | |
| parent | 9ce1a9c4c5a1888e81418232209d89496fbd0cb4 (diff) | |
| download | emacs-533eb34b776ae6b7e8ae8c4dd6eb94e7708d666b.tar.gz emacs-533eb34b776ae6b7e8ae8c4dd6eb94e7708d666b.zip | |
(For, Fand): Doc fixes.
Reported by Johan Bockgård.
Diffstat (limited to 'src')
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index cd0d0fc1c5c..b96c35a41b1 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 | { |