]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcondition_case): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 26 Aug 2008 20:23:32 +0000 (20:23 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 26 Aug 2008 20:23:32 +0000 (20:23 +0000)
src/eval.c

index fc69f8bb8072b393b8d8cd4266f358b6f8cee726..083cea889f5615027075a23ea5c04b1514217825 100644 (file)
@@ -1377,7 +1377,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.