]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcatch): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 1 Nov 2006 20:23:44 +0000 (20:23 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 1 Nov 2006 20:23:44 +0000 (20:23 +0000)
src/eval.c

index 4e04422d2d6b2bd37797afe4d590bdb03b686fe1..7e9b4b55d09a8eb0c7d77dc2a8b0b5a4ebf7bd14 100644 (file)
@@ -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...)  */)