diff options
author | nijtmans <nijtmans> | 2009-12-25 22:45:05 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-12-25 22:45:05 (GMT) |
commit | eb97742ebfc4d2677574f3985737a4c667310261 (patch) | |
tree | b65c693bb6c8e866180772a62c623474fc5e0902 /generic/tclParse.c | |
parent | 81ff36dd38f8ddf99fc389e8c18cb495880f9289 (diff) | |
download | tcl-eb97742ebfc4d2677574f3985737a4c667310261.zip tcl-eb97742ebfc4d2677574f3985737a4c667310261.tar.gz tcl-eb97742ebfc4d2677574f3985737a4c667310261.tar.bz2 |
CONST -> const
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r-- | generic/tclParse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c index b06b106..65d09c2 100644 --- a/generic/tclParse.c +++ b/generic/tclParse.c @@ -2099,7 +2099,7 @@ TclSubstTokens( * left to be substituted will be written */ int line, /* The line the script starts on. */ int* clNextOuter, /* Information about an outer context for */ - CONST char* outerScript) /* continuation line data. This is set by + const char* outerScript) /* continuation line data. This is set by * EvalEx() to properly handle [...]-nested * commands. The 'outerScript' refers to the * most-outer script containing the embedded |