diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2016-01-18 06:12:15 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2016-01-18 06:12:15 (GMT) |
commit | ad1616e27816a418512271c07f7016f8b6bce72e (patch) | |
tree | 733bc473514c2b9923cce55886368a018e1d1052 /generic/tclNamesp.c | |
parent | 09b8d0d108bdb52be039e5126b6dbea0fa1e0aca (diff) | |
download | tcl-ad1616e27816a418512271c07f7016f8b6bce72e.zip tcl-ad1616e27816a418512271c07f7016f8b6bce72e.tar.gz tcl-ad1616e27816a418512271c07f7016f8b6bce72e.tar.bz2 |
introduce macros NRE_JUMP and NRE_NEXT to abstract the NRE mechanism, previous to introducing an alternative to the trampoline implementation; no functional change for now
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 4a59d6e..b8c447e 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -3366,7 +3366,7 @@ NsEval_Callback( */ TclPopStackFrame(interp); - return result; + NRE_NEXT(result); } /* |