aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/control.texi
diff options
context:
space:
mode:
authorRichard M. Stallman1996-12-20 00:09:23 +0000
committerRichard M. Stallman1996-12-20 00:09:23 +0000
commit9e2b495b7085a76d3d6ea521312d080aa6479965 (patch)
tree4dc81dafa556a21ec36ae794fde5dd02b06e5fcb /lispref/control.texi
parent6268f00653c5f594251862066f15126bee5f1a2a (diff)
downloademacs-9e2b495b7085a76d3d6ea521312d080aa6479965.tar.gz
emacs-9e2b495b7085a76d3d6ea521312d080aa6479965.zip
Minor cleanups for overfull hboxes.
Diffstat (limited to 'lispref/control.texi')
-rw-r--r--lispref/control.texi8
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
822the handler, the body of the handler is executed. 822the 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
825from the @code{condition-case} form. Because the protected form is 825@code{condition-case} form. Because the protected form is exited
826exited completely before execution of the handler, the handler cannot 826completely before execution of the handler, the handler cannot resume
827resume execution at the point of the error, nor can it examine variable 827execution at the point of the error, nor can it examine variable
828bindings that were made within the protected form. All it can do is 828bindings that were made within the protected form. All it can do is
829clean up and proceed. 829clean up and proceed.
830 830