summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2008-08-26 20:22:45 +0000
committerChong Yidong <cyd@stupidchicken.com>2008-08-26 20:22:45 +0000
commitfc7093315539736db61d20c92cd8da5fedd27a42 (patch)
tree97a641658b8255a189fd4a89eab904d20b610742
parent006a2ad3ad642f209737a7765683737eec859a13 (diff)
downloademacs-fc7093315539736db61d20c92cd8da5fedd27a42.tar.gz
(Fcondition_case): 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 2a5b631f1c9..8feb70072b5 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1350,7 +1350,7 @@ instead of a single condition name. Then it handles all of them.
When a handler handles an error, control returns to the `condition-case'
and it executes the handler's BODY...
-with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA) from the error.
+with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
(If VAR is nil, the handler can't access that information.)
Then the value of the last BODY form is returned from the `condition-case'
expression.