diff options
| author | Richard M. Stallman | 1996-12-20 00:09:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-20 00:09:23 +0000 |
| commit | 9e2b495b7085a76d3d6ea521312d080aa6479965 (patch) | |
| tree | 4dc81dafa556a21ec36ae794fde5dd02b06e5fcb /lispref/control.texi | |
| parent | 6268f00653c5f594251862066f15126bee5f1a2a (diff) | |
| download | emacs-9e2b495b7085a76d3d6ea521312d080aa6479965.tar.gz emacs-9e2b495b7085a76d3d6ea521312d080aa6479965.zip | |
Minor cleanups for overfull hboxes.
Diffstat (limited to 'lispref/control.texi')
| -rw-r--r-- | lispref/control.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/control.texi b/lispref/control.texi index 1a5e7033c1c..4973599d877 100644 --- a/lispref/control.texi +++ b/lispref/control.texi | |||
| @@ -821,10 +821,10 @@ that are being exited and executes the cleanups of all | |||
| 821 | @code{unwind-protect} forms that are exited. Once control arrives at | 821 | @code{unwind-protect} forms that are exited. Once control arrives at |
| 822 | the handler, the body of the handler is executed. | 822 | the handler, the body of the handler is executed. |
| 823 | 823 | ||
| 824 | After execution of the handler body, execution continues by returning | 824 | After execution of the handler body, execution returns from the |
| 825 | from the @code{condition-case} form. Because the protected form is | 825 | @code{condition-case} form. Because the protected form is exited |
| 826 | exited completely before execution of the handler, the handler cannot | 826 | completely before execution of the handler, the handler cannot resume |
| 827 | resume execution at the point of the error, nor can it examine variable | 827 | execution at the point of the error, nor can it examine variable |
| 828 | bindings that were made within the protected form. All it can do is | 828 | bindings that were made within the protected form. All it can do is |
| 829 | clean up and proceed. | 829 | clean up and proceed. |
| 830 | 830 | ||