diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-20 00:09:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-20 00:09:23 +0000 |
commit | 3607fb8575ea1d18cd5ea01e2bb629c1d4d3adfd (patch) | |
tree | 38bb04b52ca7540b895803764544f83feea318ce /lispref/control.texi | |
parent | 9226239027548f76d2c21b94fb997df71e829967 (diff) | |
download | emacs-3607fb8575ea1d18cd5ea01e2bb629c1d4d3adfd.tar.gz |
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 @code{unwind-protect} forms that are exited. Once control arrives at the handler, the body of the handler is executed. - After execution of the handler body, execution continues by returning -from the @code{condition-case} form. Because the protected form is -exited completely before execution of the handler, the handler cannot -resume execution at the point of the error, nor can it examine variable + After execution of the handler body, execution returns from the +@code{condition-case} form. Because the protected form is exited +completely before execution of the handler, the handler cannot resume +execution at the point of the error, nor can it examine variable bindings that were made within the protected form. All it can do is clean up and proceed. |