summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmds.c
diff options
context:
space:
mode:
authormig <mig>2013-12-11 15:55:28 (GMT)
committermig <mig>2013-12-11 15:55:28 (GMT)
commitc7d612f81758056c1d7511f1f4f8dff108ef76d7 (patch)
tree7a0e0950475a80bbee80e1208642952f2d27230e /generic/tclCompCmds.c
parentd83a8d3b91859aa6d510256f3b26c4a3d98bdd5d (diff)
downloadtcl-c7d612f81758056c1d7511f1f4f8dff108ef76d7.zip
tcl-c7d612f81758056c1d7511f1f4f8dff108ef76d7.tar.gz
tcl-c7d612f81758056c1d7511f1f4f8dff108ef76d7.tar.bz2
new test, and fix for bug
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r--generic/tclCompCmds.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c
index dbc876a..7997efa 100644
--- a/generic/tclCompCmds.c
+++ b/generic/tclCompCmds.c
@@ -645,14 +645,8 @@ TclCompileCatchCmd(
(int)(CurrentOffset(envPtr) - jumpFixup.codeOffset));
}
- /*
- * Push the return options if the caller wants them.
- */
-
if (optsIndex != -1) {
TclEmitOpcode( INST_PUSH_RETURN_OPTIONS, envPtr);
- Emit14Inst( INST_STORE_SCALAR, optsIndex, envPtr);
- TclEmitOpcode( INST_POP, envPtr);
}
/*
@@ -662,6 +656,15 @@ TclCompileCatchCmd(
TclEmitOpcode( INST_END_CATCH, envPtr);
/*
+ * Push the return options if the caller wants them.
+ */
+
+ if (optsIndex != -1) {
+ Emit14Inst( INST_STORE_SCALAR, optsIndex, envPtr);
+ TclEmitOpcode( INST_POP, envPtr);
+ }
+
+ /*
* At this point, the top of the stack is inconveniently ordered:
* result returnCode
* Reverse the stack to store the result.