aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorMiles Bader2006-11-07 23:22:48 +0000
committerMiles Bader2006-11-07 23:22:48 +0000
commitdbc3b08c405a7b1c0ddb0fb0c98164b355802af5 (patch)
tree00c6f28244409d14bec11e221fb3c03daef63fc6 /src/eval.c
parentbbb6e8f2b6037dc1ee4ddd6cb63a1a6ddb04a591 (diff)
parent86cb14475e9e76f0b3323d2e7110a4a2bd310cdb (diff)
downloademacs-dbc3b08c405a7b1c0ddb0fb0c98164b355802af5.tar.gz
emacs-dbc3b08c405a7b1c0ddb0fb0c98164b355802af5.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 490-504) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 161-163) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-130
Diffstat (limited to 'src/eval.c')
-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...) */)