diff src/eval.c @ 73602:400169af8063

(Fcatch): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 01 Nov 2006 20:23:44 +0000
parents d38d245297fa
children 3d45362f1d38 c71725faff1a 02cf29720f31
line wrap: on
line diff
--- a/src/eval.c	Wed Nov 01 19:26:14 2006 +0000
+++ b/src/eval.c	Wed Nov 01 20:23:44 2006 +0000
@@ -1174,7 +1174,7 @@
 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...)  */)