aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
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,
1174TAG is evalled to get the tag to use; it must not be nil. 1174TAG is evalled to get the tag to use; it must not be nil.
1175 1175
1176Then the BODY is executed. 1176Then the BODY is executed.
1177Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'. 1177Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'.
1178If no throw happens, `catch' returns the value of the last BODY form. 1178If no throw happens, `catch' returns the value of the last BODY form.
1179If a throw happens, it specifies the value to return from `catch'. 1179If a throw happens, it specifies the value to return from `catch'.
1180usage: (catch TAG BODY...) */) 1180usage: (catch TAG BODY...) */)