From: Juanma Barranquero Date: Wed, 1 Nov 2006 20:23:44 +0000 (+0000) Subject: (Fcatch): Doc fix. X-Git-Tag: emacs-pretest-22.0.91~415 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1d632ccfe81c022265bf35c3b803e25b682de040;p=emacs.git (Fcatch): Doc fix. --- diff --git a/src/eval.c b/src/eval.c index 4e04422d2d6..7e9b4b55d09 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1174,7 +1174,7 @@ DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0, TAG is evalled to get the tag to use; it must not be nil. Then the BODY is executed. -Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'. +Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'. If no throw happens, `catch' returns the value of the last BODY form. If a throw happens, it specifies the value to return from `catch'. usage: (catch TAG BODY...) */)