From 533eb34b776ae6b7e8ae8c4dd6eb94e7708d666b Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 18 Jul 2007 11:48:47 +0000 Subject: =?UTF-8?q?(For,=20Fand):=20Doc=20fixes.=20Reported=20by=20Johan?= =?UTF-8?q?=20Bockg=C3=A5rd.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/eval.c') 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, doc: /* Eval args until one of them yields non-nil, then return that value. The remaining args are not evalled at all. If all args return nil, return nil. -usage: (or CONDITIONS ...) */) +usage: (or CONDITIONS...) */) (args) Lisp_Object args; { @@ -355,7 +355,7 @@ DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, doc: /* Eval args until one of them yields nil, then return nil. The remaining args are not evalled at all. If no arg yields nil, return the last arg's value. -usage: (and CONDITIONS ...) */) +usage: (and CONDITIONS...) */) (args) Lisp_Object args; { -- cgit v1.2.1 From 819586b27dd944c766c1663fbc9b56fd77afb08e Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 18 Jul 2007 11:52:52 +0000 Subject: (Fsetq): Doc fix. --- src/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/eval.c') diff --git a/src/eval.c b/src/eval.c index b96c35a41b1..7d7e73484f7 100644 --- a/src/eval.c +++ b/src/eval.c @@ -531,7 +531,7 @@ Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'. The second VAL is not computed until after the first SYM is set, and so on; each VAL can use the new value of variables set earlier in the `setq'. The return value of the `setq' form is the value of the last VAL. -usage: (setq SYM VAL SYM VAL ...) */) +usage: (setq [SYM VAL]...) */) (args) Lisp_Object args; { -- cgit v1.2.1