diff options
| author | Chong Yidong | 2008-08-26 20:23:32 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-08-26 20:23:32 +0000 |
| commit | d0acbbaf39f91d98f84b7013f6cbd957efbe8e91 (patch) | |
| tree | c705ef01d0965578c01cd42f61201a0ed302d5f2 | |
| parent | ba59c3a1539ca2519c3496350c6b0fb6e781c6e8 (diff) | |
| download | emacs-d0acbbaf39f91d98f84b7013f6cbd957efbe8e91.tar.gz emacs-d0acbbaf39f91d98f84b7013f6cbd957efbe8e91.zip | |
(Fcondition_case): Doc fix.
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index fc69f8bb807..083cea889f5 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1377,7 +1377,7 @@ instead of a single condition name. Then it handles all of them. | |||
| 1377 | 1377 | ||
| 1378 | When a handler handles an error, control returns to the `condition-case' | 1378 | When a handler handles an error, control returns to the `condition-case' |
| 1379 | and it executes the handler's BODY... | 1379 | and it executes the handler's BODY... |
| 1380 | with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA) from the error. | 1380 | with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error. |
| 1381 | (If VAR is nil, the handler can't access that information.) | 1381 | (If VAR is nil, the handler can't access that information.) |
| 1382 | Then the value of the last BODY form is returned from the `condition-case' | 1382 | Then the value of the last BODY form is returned from the `condition-case' |
| 1383 | expression. | 1383 | expression. |