diff options
| author | Chong Yidong | 2008-08-26 20:22:45 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-08-26 20:22:45 +0000 |
| commit | b2a108bb6888f78405c059edfe0d6808eb1ac3bb (patch) | |
| tree | a284bf8882fafb0e15681c08871ee03756a06830 /src | |
| parent | 17b66e73827e6abb55c338ef4c00f9cb472adb66 (diff) | |
| download | emacs-b2a108bb6888f78405c059edfe0d6808eb1ac3bb.tar.gz emacs-b2a108bb6888f78405c059edfe0d6808eb1ac3bb.zip | |
(Fcondition_case): Doc fix.
Diffstat (limited to 'src')
| -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 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. | |||
| 1350 | 1350 | ||
| 1351 | When a handler handles an error, control returns to the `condition-case' | 1351 | When a handler handles an error, control returns to the `condition-case' |
| 1352 | and it executes the handler's BODY... | 1352 | and it executes the handler's BODY... |
| 1353 | with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA) from the error. | 1353 | with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error. |
| 1354 | (If VAR is nil, the handler can't access that information.) | 1354 | (If VAR is nil, the handler can't access that information.) |
| 1355 | Then the value of the last BODY form is returned from the `condition-case' | 1355 | Then the value of the last BODY form is returned from the `condition-case' |
| 1356 | expression. | 1356 | expression. |