From: Don P. <dg...@us...> - 2003-03-12 17:52:38
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv23643 Modified Files: ChangeLog Log Message: * generic/tclInterp.c (Tcl_InterpObjCmd): Corrected option parsing beyond objc for [interp create --]. Thanks to Marco Maggi. [Bug 702383] |
From: Don P. <dg...@us...> - 2003-03-12 18:00:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv26791 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: correct latest entry |
From: Don P. <dg...@us...> - 2003-03-12 18:01:29
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv27202 Modified Files: ChangeLog Log Message: corrected latest entry |
From: Don P. <dg...@us...> - 2003-03-12 18:04:40
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv28145 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclCmdMZ.c (Tcl_SubstObj): Corrected and added test for * tests/subst.test (subst-2.4): Tcl_SubstObj's incorrect halting of substitution at the first \x00 byte. [Bug 685106] |
From: Don P. <dg...@us...> - 2003-03-12 19:19:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv31000 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tcl.h: Removed TCL_PREFIX_IDENT and TCL_DEBUG_IDENT * win/tclWinPipe.c: from tcl.h -- they are not part of Tcl's public interface. Put them in win/tclWinPipe.c where they are used. |
From: Don P. <dg...@us...> - 2003-03-12 19:21:25
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv31896 Modified Files: ChangeLog Log Message: * generic/tcl.h: Removed TCL_PREFIX_IDENT and TCL_DEBUG_IDENT * win/tclWinPipe.c: from tcl.h -- they are not part of Tcl's public interface. Put them in win/tclWinPipe.c where they are used. |
From: Don P. <dg...@us...> - 2003-03-13 02:48:53
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv18283 Modified Files: ChangeLog Log Message: * generic/tclBasic.c (Tcl_EvalTokensStandard): * generic/tclCmdMZ.c (Tcl_SubstObj): * generic/tclCompCmds.c (TclCompileSwitchCmd): * generic/tclCompExpr.c (CompileSubExpr): * generic/tclCompile.c (TclSetByteCodeFromAny,TclCompileScript, TclCompileTokens,TclCompileCmdWord): * generic/tclCompile.h (TclCompileScript): * generic/tclExecute.c (TclCompEvalObj): * generic/tclInt.h (Interp,TCL_BRACKET_TERM,TclSubstTokens): * generic/tclParse.c (ParseTokens,Tcl_SubstObj,TclSubstTokens): * tests/subst.test (2.4, 8.7, 8.8, 11.4, 11.5): Substantial refactoring of Tcl_SubstObj to make use of the same parsing and substitution procedures as normal script evaluation. Tcl_SubstObj() moved to tclParse.c. New routine TclSubstTokens() created in tclParse.c which implements all substantial functioning of Tcl_EvalTokensStandard(). TclCompileScript() loses its "nested" argument, the Tcl_Interp struct loses its termOffset field and the TCL_BRACKET_TERM flag in the evalFlags field, all of which were only used (indirectly) by Tcl_SubstObj(). Tests subst-8.7,8.8,11.4,11.5 modified to accomodate the only behavior change: reporting of parse errors now takes precedence over [return] and [continue] exceptions. All other behavior should |
From: Mo D. <md...@us...> - 2003-03-13 10:39:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv14610 Modified Files: ChangeLog Log Message: Require autoconf 2.57 or newer, see TIP 34 for a detailed explanation of why this is good. This will no doubt break the build on some platforms, let the flaming begin. * tools/configure: Regen with autoconf 2.57. * tools/configure.in: Require autoconf 2.57. * unix/configure: Regen with autoconf 2.57. * unix/configure.in: Require autoconf 2.57. Apply AC_LIBOBJ changes from patch 529884. * unix/tcl.m4: Ditto. * win/configure: Regen with autoconf 2.57. * win/configure.in: Require autoconf 2.57. Don't subst LIBOBJS since this happens by default, this avoids an autoconf error. |
From: Mo D. <md...@us...> - 2003-03-13 10:49:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv18183 Modified Files: ChangeLog Log Message: * win/tcl.m4 (SC_WITH_TCL): Port version number fix that was made in tk instead of tcl sources. |
From: Kevin B K. <ke...@us...> - 2003-03-13 16:27:38
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv27003 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Backed the version to 8.4 on the 8.4 branch. (I just loathe sticky tags). |
From: Donal K. F. <dk...@us...> - 2003-03-14 16:19:12
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv18639 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * generic/tclCmdAH.c (Tcl_FormatObjCmd): Only add the modifier that indicates we've got a wide int when we're formatting in an integer style. Stops some libc's from going mad. [Bug #702622] Also tidied whitespace. |
From: Donal K. F. <dk...@us...> - 2003-03-14 16:52:08
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv23830 Modified Files: ChangeLog Log Message: * generic/tclCmdAH.c (Tcl_FormatObjCmd): Only add the modifier that indicates we've got a wide int when we're formatting in an integer style. Stops some libc's from going mad. [Bug #702622] Also tidied whitespace. |
From: Donal K. F. <dk...@us...> - 2003-03-14 21:48:49
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv12095 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Backport of fix for 698146 to remove assumption that time_t is a long... |
From: Donal K. F. <dk...@us...> - 2003-03-14 23:19:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv19859 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Made format less keen on converting numeric types. [Bug #699060] |
From: Donal K. F. <dk...@us...> - 2003-03-17 14:21:41
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv730 Modified Files: ChangeLog Log Message: Fix docbug in lsearch and lsort commands for -ascii opt (which works with unicode in the obvious order, really.) [Bug #703807] |
From: Donal K. F. <dk...@us...> - 2003-03-17 14:25:20
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv2497 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Fixed docbug in lsearch and lsort for -ascii opt, which operates on Unicode not ASCII these days. [Bug #703807] |
From: Mo D. <md...@us...> - 2003-03-18 00:55:34
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv11383 Modified Files: ChangeLog Log Message: * tests/format.test: Renumber tests, a bunch of tests all had the same id. |
From: Vince D. <vin...@us...> - 2003-03-18 10:51:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv11361 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: Fixes for three filesystem problems |
From: Daniel A. S. <da...@us...> - 2003-03-18 13:38:24
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv23147 Modified Files: ChangeLog Log Message: * tools/tcltk-man2html.tcl: added support for building 'make html' from inside distribution directories named with 8.x.x version numbers. tcltk-man2html now uses the latest tcl8.x.x resp. tk8.x.x directories found inside its --srcdir argument. |
From: Daniel A. S. <da...@us...> - 2003-03-18 13:41:32
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv26149 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tools/tcltk-man2html.tcl: added support for building 'make html' from inside distribution directories named with 8.x.x version numbers. tcltk-man2html now uses the latest tcl8.x.x resp. tk8.x.x directories found inside its --srcdir argument. |
From: Kevin B K. <ke...@us...> - 2003-03-19 01:19:57
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv30989 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tests/registry.test: Changed the conditionals to avoid an abort if [testlocale] is missing, as when running the test in tclsh rather than tcltest. [Bug #705677] |
From: Kevin B K. <ke...@us...> - 2003-03-19 01:21:01
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv31530 Modified Files: ChangeLog Log Message: * tests/registry.test: Changed the conditionals to avoid an abort if [testlocale] is missing, as when running the test in tclsh rather than tcltest. [Bug #705677] |
From: Mo D. <md...@us...> - 2003-03-19 03:09:43
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv32263 Modified Files: ChangeLog Log Message: * win/configure: Regen. * win/configure.in: Don't run the AC_CYGWIN macro since it uses AC_CANONICAL_HOST under autoconf 2.5X. Just check to see if __CYGWIN__ is defined by the compiler and set the ac_cv_cygwin variable based on that. [Bug 705912] |
From: Don P. <dg...@us...> - 2003-03-19 16:51:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv21150 Modified Files: ChangeLog Log Message: * generic/tclCompCmds.c (TclCompileReturnCmd): Alternative fix for * generic/tclCompile.c (INST_RETURN): [Bug 633204] that uses a new * generic/tclCompile.h (INST_RETURN): bytecode INST_RETURN to * generic/tclExecute.c (INST_RETURN): properly bytecode the [return] command to something that returns TCL_RETURN. |
From: Don P. <dg...@us...> - 2003-03-19 20:06:57
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs1:/tmp/cvs-serv15272 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * doc/Eval.3 (Tcl_EvalObjEx): Corrected CONST and * doc/ParseCmd.3 (Tcl_EvalTokensStandard): return type errors in documentation. [Bug 683994] |