diff options
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 4e04422d2d6..7e9b4b55d09 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1174,7 +1174,7 @@ DEFUN ("catch", Fcatch, Scatch, 1, UNEVALLED, 0, | |||
| 1174 | TAG is evalled to get the tag to use; it must not be nil. | 1174 | TAG is evalled to get the tag to use; it must not be nil. |
| 1175 | 1175 | ||
| 1176 | Then the BODY is executed. | 1176 | Then the BODY is executed. |
| 1177 | Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'. | 1177 | Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'. |
| 1178 | If no throw happens, `catch' returns the value of the last BODY form. | 1178 | If no throw happens, `catch' returns the value of the last BODY form. |
| 1179 | If a throw happens, it specifies the value to return from `catch'. | 1179 | If a throw happens, it specifies the value to return from `catch'. |
| 1180 | usage: (catch TAG BODY...) */) | 1180 | usage: (catch TAG BODY...) */) |