summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-01 20:23:44 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-01 20:23:44 +0000
commit1d632ccfe81c022265bf35c3b803e25b682de040 (patch)
tree1328c8e6f3ef05dda8724f7e7996e1840935e416
parentb73ea44bb76b1b8b08ba6fea548107e20945413d (diff)
downloademacs-1d632ccfe81c022265bf35c3b803e25b682de040.tar.gz
(Fcatch): Doc fix.
-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,
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...) */)