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/tclCompile.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/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index f0a3117..f27843e 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.70 2007/04/03 01:34:37 msofer Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.71 2007/05/30 18:12:58 dgp Exp $ */ #ifndef _TCLCOMPILATION @@ -915,7 +915,6 @@ MODULE_SCOPE void TclVerifyLocalLiteralTable(CompileEnv *envPtr); #endif MODULE_SCOPE int TclWordKnownAtCompileTime(Tcl_Token *tokenPtr, Tcl_Obj *valuePtr); -MODULE_SCOPE int TclWordSimpleExpansion(Tcl_Token *tokenPtr); /* *---------------------------------------------------------------- |