Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Regen | dkf | 2002-06-22 | 1 | -1/+1 |
| | |||||
* | Regen. | dkf | 2002-06-22 | 1 | -1/+1 |
| | |||||
* | Resynch... | dkf | 2002-06-22 | 1 | -3/+3 |
| | |||||
* | Bumped version number to b1 in preparation for release. | dkf | 2002-06-21 | 8 | -16/+22 |
| | |||||
* | * Updated all package install directories to match current Major.minor | dgp | 2002-06-21 | 5 | -26/+37 |
| | | | | | versions of the packages. Added tcltest package to installation on Windows. | ||||
* | LogSyntaxError() should reset the interpreter result | jenglish | 2002-06-21 | 3 | -2/+11 |
| | | | | [Bug 550142 "Tcl_ExprObj -> abort"] | ||||
* | * Corrected comments and namespace style | dgp | 2002-06-21 | 2 | -48/+52 |
| | | | | issues. Thanks to Bruce Stephens. [Bug 572025] | ||||
* | tip99tip_99 | vincentdarley | 2002-06-21 | 1 | -6/+6 |
| | |||||
* | tip99 | vincentdarley | 2002-06-21 | 15 | -246/+594 |
| | |||||
* | fix for [Bug 571385] | Miguel Sofer | 2002-06-20 | 2 | -9/+18 |
| | |||||
* | * generic/tclExecute.c (TclCompEvalObj): clarified and simplified the | Miguel Sofer | 2002-06-20 | 2 | -49/+44 |
| | | | | logic for compilation/recompilation. | ||||
* | doc/file.n: Fixed indentation. No substantive changes. | jenglish | 2002-06-20 | 2 | -6/+11 |
| | |||||
* | Added parens for clarity | dgp | 2002-06-20 | 2 | -5/+6 |
| | |||||
* | * generic/tclCmdMZ.c (Tcl_RegexpObjCmd): get the resultPtr again | hobbs | 2002-06-19 | 2 | -1/+10 |
| | | | | | as the Tcl_ObjSetVar2 may cause the result to change. [Patch #558324] (watson) | ||||
* | generic/tclExecute.c (TEBC): removing unused "for(;;)" loop; improved | Miguel Sofer | 2002-06-19 | 2 | -2581/+2567 |
| | | | | comments; re-indentation. | ||||
* | * generic/tclExecute.c (TEBC): elimination of duplicated code in the | Miguel Sofer | 2002-06-18 | 2 | -545/+435 |
| | | | | | | non-immediate INST_INCR instructions; elimination of 103 (!) TclDecrRefCount macros. The different instructions now jump back to a common "DecrRefCount zone" at the topof the loop. | ||||
* | generic/tclExecute.c (TEBC, INST_DONE): small bug in the panic code | Miguel Sofer | 2002-06-18 | 2 | -1/+7 |
| | | | | for tcl-stack corruption. | ||||
* | no message | davygrvy | 2002-06-18 | 1 | -0/+12 |
| | |||||
* | Trims to support the removal of RESOURCE_INCLUDED from rc | davygrvy | 2002-06-18 | 3 | -19/+15 |
| | | | | | | | | | | | scripts from FR #565088. * generic/tcl.h: moved the #ifndef RC_INVOKED start block up in the file. rc scripts don't need to know thread mutexes. * win/tcl.rc: * win/tclsh.rc: removed the #define RESOURCE_INCLUDED to let the built-in -DRC_INVOKED to the work. | ||||
* | * doc/CrtTrace.3: Added TIP#62 implementation of command | hobbs | 2002-06-17 | 15 | -196/+1530 |
| | | | | | | | | | | | | | | | * doc/trace.n: execution tracing [FR #462580] (lavana). * generic/tcl.h: This includes enter/leave tracing as well * generic/tclBasic.c: as inter-procedure stepping. * generic/tclCmdMZ.c: * generic/tclCompile.c: * generic/tclExecute.c: * generic/tclInt.decls: * generic/tclInt.h: * generic/tclIntDecls.h: * generic/tclStubInit.c: * generic/tclVar.c: * tests/trace.test: | ||||
* | * Corrected en_UK references to en_GB. UK is not | dgp | 2002-06-17 | 2 | -6/+10 |
| | | | | a country designation recognized in ISO 3166. | ||||
* | * win/tclWinPipe.c (BuildCommandLine): Fixed bug #554068 ([exec] | andreas_kupries | 2002-06-17 | 3 | -2/+24 |
| | | | | | | on windows did not treat { in filenames well.). Bug reported by Vince Darley <vincentdarley@users.sourceforge.net>, patch provided by Vince too. | ||||
* | generic/tcl.h: #ifdef logic for K&R C backwards compatibility | jenglish | 2002-06-17 | 2 | -78/+53 |
| | | | | | changed to assume modern C by default. See SF FR #565088 for full details. | ||||
* | * More Windows Registry locale codes from Bruno Haible. | dgp | 2002-06-17 | 2 | -15/+130 |
| | |||||
* | * Revised locale initialization to interpret | dgp | 2002-06-17 | 5 | -480/+692 |
| | | | | | | | | | environment variable locale values according to XPG4, and to recognize the LC_ALL and LC_MESSAGES values over that of LANG. Also added many Windows Registry locale values to those recognized by msgcat. Revised tests and docs. Bumped to version 1.3. Thanks to Bruno Haible for the report and assistance crafting the solution. [Bug 525522, 525525] | ||||
* | a better algorithm for the previous bug fix. | Miguel Sofer | 2002-06-17 | 2 | -29/+28 |
| | |||||
* | [Bug 569438] in the processing of dollar variables | Miguel Sofer | 2002-06-16 | 3 | -14/+44 |
| | |||||
* | bug in the consolidation of the INCR_..._STK instructions | Miguel Sofer | 2002-06-16 | 2 | -2/+10 |
| | |||||
* | runtime peep-hole optimisation of variables (INST_STORE, INST_INCR) | Miguel Sofer | 2002-06-14 | 2 | -10/+51 |
| | | | | and commands (INST_INVOKE); faster check for the existence of a catch. | ||||
* | runtime peep-hole optimisation of comparisons. | Miguel Sofer | 2002-06-14 | 2 | -17/+48 |
| | |||||
* | BC-engine: runtime peep-hole optimisation of INST_FOREACH | Miguel Sofer | 2002-06-14 | 2 | -10/+27 |
| | |||||
* | no message | davygrvy | 2002-06-14 | 1 | -0/+6 |
| | |||||
* | The test for compiler optimizations was in error. Thanks goes to Roy Terry | davygrvy | 2002-06-14 | 1 | -2/+2 |
| | | | | <royterry@earthlink.net> for his assistence with this. | ||||
* | TIP#102 implementation: 'trace list' becomes 'trace info' | dkf | 2002-06-14 | 4 | -47/+54 |
| | |||||
* | consolidated code for the conditional branch instructions. | Miguel Sofer | 2002-06-13 | 2 | -53/+39 |
| | |||||
* | fixed the previous patch - wouldn't compile with TCL_COMPILE_DEBUG set. | Miguel Sofer | 2002-06-13 | 2 | -13/+18 |
| | |||||
* | TclExecuteByteCode: consolidated exception handling of INST_INVOKE, | Miguel Sofer | 2002-06-13 | 2 | -201/+267 |
| | | | | INST_EVAL, INST_BREAK and INST_CONTINUE. | ||||
* | consolidated opcodes in the bytecode engine, eliminating duplicated | Miguel Sofer | 2002-06-13 | 3 | -487/+232 |
| | | | | | code. Added the new (but pre-existent in tcl.h) possible flag bit TCL_TRACE_READS to Tcl_(Obj)?SetVar.* | ||||
* | new fCmd.test problems on Unix | vincentdarley | 2002-06-13 | 2 | -12/+14 |
| | |||||
* | fs normalize | vincentdarley | 2002-06-13 | 1 | -3/+12 |
| | |||||
* | vfs, winfs testsuite | vincentdarley | 2002-06-13 | 17 | -89/+492 |
| | |||||
* | fixed [Bug 568123] | Miguel Sofer | 2002-06-12 | 2 | -2/+7 |
| | |||||
* | * win/tclWinFile.c: corrected the symbolic link handling code to | hobbs | 2002-06-12 | 2 | -31/+65 |
| | | | | | | | allow it to compile. Added real definition of REPARSE_DATA_BUFFER (found in winnt.h). Most of the added definitions appear to have correct, cross-Win-version equivalents in winnt.h and should be removed, but just making things "work" for now. | ||||
* | Made this file compile! | dkf | 2002-06-12 | 1 | -2/+4 |
| | |||||
* | fs clarification and windows fixes | vincentdarley | 2002-06-12 | 10 | -348/+853 |
| | |||||
* | optimised read access to local variables created at run-time | Miguel Sofer | 2002-06-11 | 5 | -139/+28 |
| | |||||
* | Removed assumptions that [makeFile] creates files in the current dir. | dkf | 2002-06-11 | 1 | -9/+9 |
| | |||||
* | Duplicate test number... | dkf | 2002-06-11 | 1 | -2/+2 |
| | |||||
* | Fix for [info locals] bug #567386; added compile functions for | Miguel Sofer | 2002-06-11 | 8 | -17/+211 |
| | | | | [global], [upvar] and [variable]. | ||||
* | generic/tclExecute.c: optimised algorithm for exception range lookup | Miguel Sofer | 2002-06-11 | 2 | -15/+29 |
| |