diff options
author | msofer <msofer@noemail.net> | 2009-12-13 17:54:04 (GMT) |
---|---|---|
committer | msofer <msofer@noemail.net> | 2009-12-13 17:54:04 (GMT) |
commit | 16cfb4e7ce95a1231568d876d0c1595a4e289413 (patch) | |
tree | cff1148561c8796ea19dbe7070ba78ee7a21fc36 /generic/tclBasic.c | |
parent | cc25bb65464312ffce217bad89c498eda15d61fd (diff) | |
download | tcl-16cfb4e7ce95a1231568d876d0c1595a4e289413.zip tcl-16cfb4e7ce95a1231568d876d0c1595a4e289413.tar.gz tcl-16cfb4e7ce95a1231568d876d0c1595a4e289413.tar.bz2 |
fix comment
FossilOrigin-Name: c07dfe3d13f3adca4c2b34f79fe2ed82f859e3f6
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 2316f06..1d649a1 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.434 2009/12/13 17:27:46 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.435 2009/12/13 17:54:05 msofer Exp $ */ #include "tclInt.h" @@ -8289,12 +8289,10 @@ TclNRTailcallObjCmd( Tcl_IncrRefCount(nsObjPtr); /* - * Add two callbacks: first the one to actually evaluate the tailcalled - * command, then the one that signals TEBC to stash the first at its - * proper place. - * - * Being lazy: add the callback, then remove it (to exploit the - * TclNRAddCallBack macro to build the callback) + * Create the callback to actually evaluate the tailcalled + * command, then pass it to tebc so that it is stashed at the proper + * place. Being lazy: exploit the TclNRAddCallBack macro to build the + * callback. */ TclNRAddCallback(interp, NRTailcallEval, listPtr, nsObjPtr, NULL, NULL); |