diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-04 13:29:57 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-04 13:29:57 (GMT) |
commit | 1f8003a8dce2c5b16ca06bb46680d717b0a2e467 (patch) | |
tree | be31ab9339d4ad8a2e370affa4d8c4f79b275949 | |
parent | d39282fcd6dcb750a73a1a6a051468d62ced4388 (diff) | |
download | tcl-1f8003a8dce2c5b16ca06bb46680d717b0a2e467.zip tcl-1f8003a8dce2c5b16ca06bb46680d717b0a2e467.tar.gz tcl-1f8003a8dce2c5b16ca06bb46680d717b0a2e467.tar.bz2 |
added comments
-rw-r--r-- | generic/tclBasic.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 56282b7..66ab08d 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,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.241 2007/04/03 01:34:35 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.242 2007/04/04 13:29:57 msofer Exp $ */ #include "tclInt.h" @@ -3392,6 +3392,10 @@ TclInterpReady( * Side effects: * Depends on the command. * + * Note to maintainers: + * This function has to be kept in sync with the shortcut version in + * TclExecuteByteCode (INST_INVOKE). + * *---------------------------------------------------------------------- */ |