diff options
author | dgp <dgp@users.sourceforge.net> | 2007-05-30 18:12:57 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-05-30 18:12:57 (GMT) |
commit | c3a6364780e6096f9665ff4b903d52e88abec903 (patch) | |
tree | 3556fc80b8c80f1b647b426b8d1dfdf33d4e09e2 /generic/tclInt.h | |
parent | dd4bd718f68c159cfd56b0a21fb425a8fdf4941a (diff) | |
download | tcl-c3a6364780e6096f9665ff4b903d52e88abec903.zip tcl-c3a6364780e6096f9665ff4b903d52e88abec903.tar.gz tcl-c3a6364780e6096f9665ff4b903d52e88abec903.tar.bz2 |
* generic/tclBasic.c: Removed code that dealt with
* generic/tclCompile.c: TCL_TOKEN_EXPAND_WORD tokens representing
* generic/tclCompile.h: expanded literal words. These sections were
mostly in place to enable [info frame] to discover line information
in expanded literals. Since the parser now generates a token for
each post-expansion word referring to the right location in the
original script string, [info frame] gets all the data it needs.
* generic/tclInt.h: Revised the parser so that it never produces
* generic/tclParse.c: TCL_TOKEN_EXPAND_WORD tokens when parsing an
* tests/parse.test: expanded literal word; that is, something like
{*}{x y z}. Instead, generate the series of TCL_TOKEN_SIMPLE_WORD
tokens to represent the words that expansion of the literal string
produces. [RFE 1725186]
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 05cab9c..ec0fd19 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.310 2007/05/11 20:59:13 patthoyts Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.311 2007/05/30 18:12:58 dgp Exp $ */ #ifndef _TCLINT @@ -3397,10 +3397,6 @@ MODULE_SCOPE void TclBNInitBignumFromWideUInt(mp_int *bignum, #include "tclIntPlatDecls.h" #include "tclTomMathDecls.h" - - -MODULE_SCOPE void TclPrintTokens (Tcl_Token* token, int words, int level); - #endif /* _TCLINT */ /* |