Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * win/tclWin32Dll.c (TclpCheckStackSpace): | Kevin B Kenny | 2004-05-03 | 1 | -1/+31 |
| | | | | | * tests/stack.test (stack-3.1): Fix for undetected stack overflow in TclReExec on Windows. [Bug 947070] | ||||
* | cleaning up after new test in last commit | Miguel Sofer | 2004-05-02 | 1 | -1/+2 |
| | |||||
* | * generic/tclProc.c (TclObjInvokeProc): | Miguel Sofer | 2004-05-02 | 1 | -1/+6 |
| | | | | | * tests/proc.test (proc-3.6): fix for bad quoting of multi-word proc names in error messages [Bug 942757] | ||||
* | * tests/execute.test (execute-8.2): Avoid crashes when there | dgp | 2004-04-29 | 1 | -4/+9 |
| | | | | is limited system stack space (threads-enabled). | ||||
* | * doc/global.n: | Miguel Sofer | 2004-04-28 | 2 | -2/+12 |
| | | | | | | | | * doc/upvar.n: * generic/tclVar.c (ObjMakeUpvar): * tests/upvar.test (upvar-8.11): * tests/var.test (var-3.11): Avoid creation of unusable variables: [Bug 600812] [TIP 184]. | ||||
* | * generic/tclIO.c (Tcl_SetChannelOption): Fixed [SF Tcl Bug | andreas_kupries | 2004-04-23 | 2 | -1/+862 |
| | | | | | 930851]. When changing the eofchar we have to zap the related flags to prevent them from prematurely aborting the next read. | ||||
* | Fix minor fault in [clock clicks] error message. | dkf | 2004-04-15 | 1 | -1/+4 |
| | |||||
* | * tests/unixInit.test (unixInit-3.1): Default encoding on Darwin | dgp | 2004-04-06 | 1 | -2/+4 |
| | | | | systems is utf-8. Thanks to Steven Abner (tauvan). [Bug 928808] | ||||
* | root interacts badly with access(...,X_OK) [Bug 929892] | dkf | 2004-04-06 | 1 | -2/+2 |
| | |||||
* | * tests/tcltest.test: Corrected constraint typos: "nonRoot" -> | dgp | 2004-04-02 | 1 | -4/+4 |
| | | | | "notRoot". [Bug 928353] | ||||
* | * generic/tclCompile.c: New instruction code INST_START_CMD | Miguel Sofer | 2004-03-30 | 3 | -5/+16 |
| | | | | | | | | | * generic/tclCompile.h: that allows checking the bytecode's * generic/tclExecute.c: validity [Bug 729692] and the interp's * tests/interp.test (18.9): readyness [Bug 495830] before running * tests/proc.test (7.1): the command. It also changes the * tests/rename.test (6.1): mechanics of the async tests in TEBC, doing it now at command start instead of every 16 instructions. | ||||
* | fix to glob with volume relative paths, bug 898238 | vincentdarley | 2004-03-30 | 2 | -3/+28 |
| | |||||
* | fix to Tcl bug 918320 | vincentdarley | 2004-03-30 | 1 | -1/+15 |
| | |||||
* | overlooked update to tests. | dgp | 2004-03-29 | 1 | -3/+2 |
| | |||||
* | fixed another volume-relative file normalization problem | vincentdarley | 2004-03-26 | 1 | -0/+14 |
| | |||||
* | fix to windows volume-relative path normalization | vincentdarley | 2004-03-26 | 1 | -0/+28 |
| | |||||
* | Silly bug found originally by Damon Courtney. [922752] | dkf | 2004-03-24 | 1 | -1/+8 |
| | |||||
* | Reverted changes to tcltest so that it can still support Mac when | dgp | 2004-03-17 | 1 | -1/+4 |
| | | | | copied to Mac systems (only requires Tcl 8.3). | ||||
* | Removed support for Mac OS Classic platform [Patch 918142] | das | 2004-03-17 | 18 | -1743/+84 |
| | |||||
* | Implementation of [dict merge] subcommand, based on [FRQ 745851] | dkf | 2004-03-12 | 1 | -2/+33 |
| | |||||
* | * generic/tclGetDate.y (TclGetDate): Fix so that | Kevin B Kenny | 2004-03-10 | 1 | -1/+158 |
| | | | | | | | | | | [clock scan <timeOfDay> -gmt true] uses the GMT base date instead of the local one. [Bug 913513] * tests/clock.test: Added test cases for wrong ISO8601 week number [Bug 500285] and wrong GMT base date [Bug 913513]. Several tests still fail on Windows, and these are actual faults in [clock scan]. Fix is still pending. * generic/tclDate.c: Regenerated. | ||||
* | glob -path fix for near filesystem root | vincentdarley | 2004-03-09 | 1 | -1/+32 |
| | |||||
* | Kevin B Kenny | 2004-03-05 | 1 | -3/+3 | |
| | | | | | | | * tests/registry.test: Applied fix from Patch #910174 to make the test for an English-language system include any country code, rather than just English-United States.1252. Thanks to Pat Thoyts for the changes. | ||||
* | Applied fix from #766159 for Win98 registry to skip unicode tests. | patthoyts | 2004-03-04 | 1 | -3/+3 |
| | |||||
* | * generic/tclTrace.c (TclCheckInterpTraces): The TIP 62 | dgp | 2004-03-01 | 1 | -1/+10 |
| | | | | | | | | * generic/tclTest.c (TestcmdtraceCmd): implementation introduced a * tests/trace.test (trace-29.10): bug by testing the CallFrame level instead of the iPtr->numLevels level when deciding what traces created by Tcl_Create(Obj)Trace to call. Added test to expose the error, and made fix. [Request 462580] | ||||
* | more robust tests | vincentdarley | 2004-02-28 | 2 | -14/+34 |
| | |||||
* | * tests/basic.test: Made several tests more robust to the | dgp | 2004-02-25 | 8 | -100/+157 |
| | | | | | | | | | | * tests/cmdMZ.test: list-quoting of path names that might * tests/exec.test: contain Tcl-special chars like { or [. * tests/io.test: Should help us sort out Tcl Bug 554068. * tests/pid.test: * tests/socket.test: * tests/source.test: * tests/unixInit.test: | ||||
* | TIP#100 implementation largely based on work by Georgios Petasis. | dkf | 2004-02-24 | 1 | -0/+223 |
| | |||||
* | add constraints to unixInit-7.1 | hobbs | 2004-02-18 | 1 | -2/+4 |
| | |||||
* | * tests/unixInit.test (unixInit-7.1): | hobbs | 2004-02-17 | 1 | -1/+14 |
| | | | | | * unix/tclUnixInit.c (TclpInitPlatform): ensure the std fds exist to prevent crash condition [Bug #772288] | ||||
* | * doc/clock.n: Removed reference to non-existent [file ctime]. | dgp | 2004-02-06 | 1 | -1/+0 |
| | |||||
* | * tests/winPipe.test: Six more cases added. | davygrvy | 2004-02-02 | 1 | -6/+24 |
| | | | | | * win/tclWinPipe.c: Fixed BuildCommandLine() to pass the new cases. | ||||
* | * tests/winPipe.test: more cases with the "N backslashes | davygrvy | 2004-02-02 | 1 | -6/+9 |
| | | | | | followed a quote -> insert N * 2 + 1 backslashes then a quote" rule needed for the crt's parse_cmdline(). | ||||
* | * tests/winPipe.test: Added proof that BuildCommandLine() is not doing the | davygrvy | 2004-02-01 | 1 | -18/+42 |
| | | | | | "N backslashes followed a quote -> insert N * 2 + 1 backslashes then a quote" rule needed for the crt's parse_cmdline(). | ||||
* | * tests/winPipe.test: more pass-thru commandline verifications. | davygrvy | 2004-02-01 | 1 | -5/+73 |
| | | | | | | | * win/tclWinPipe.c (BuildCommandLine): Special case quoting for '{' not required by the c-runtimes's _setargv(). * win/tclAppInit.c: Removed our custom setargv() in favor of the one provided by the c-runtime. [Bug 672938] | ||||
* | fix to test and comment | vincentdarley | 2004-01-29 | 1 | -2/+11 |
| | |||||
* | filesystem fixes for '-force' consistency and picky compilers | vincentdarley | 2004-01-29 | 1 | -6/+136 |
| | |||||
* | filesystem documentation and tests | vincentdarley | 2004-01-26 | 1 | -2/+4 |
| | |||||
* | file normalize bug fixes for .. and . | vincentdarley | 2004-01-23 | 1 | -0/+41 |
| | |||||
* | filesystem optimisation -- Three main issues accomplished: (1) cleaned up ↵ | vincentdarley | 2004-01-21 | 4 | -23/+48 |
| | | | | variable names in | ||||
* | Full bytecode compilation for [lassign] | dkf | 2004-01-18 | 1 | -49/+262 |
| | |||||
* | Fix a shimmering bug | dkf | 2004-01-17 | 1 | -1/+5 |
| | |||||
* | Minor fixes and update of UNIX documentation installer | dkf | 2004-01-17 | 1 | -4/+4 |
| | |||||
* | Basic implementation of TIP#57 - TclX's [lassign] command into Tcl core | dkf | 2004-01-17 | 1 | -1/+83 |
| | | | | | | | Not a direct copy * Better use of Tcl object API * More extensive test suite * More extensive documentation | ||||
* | Allow [dict exists {a {b c}} d e] to not be an error. [Bug 871387] | dkf | 2004-01-14 | 1 | -4/+2 |
| | |||||
* | Dict refcount fixes from Peter Spjuth. Thanks! [Bug 876170] | dkf | 2004-01-14 | 1 | -6/+160 |
| | |||||
* | fix to file normalization with relative links | vincentdarley | 2003-12-17 | 2 | -10/+45 |
| | |||||
* | fix to fs norm bug 860402 | vincentdarley | 2003-12-17 | 1 | -20/+30 |
| | |||||
* | fix to fs norm bug 860402 | vincentdarley | 2003-12-17 | 1 | -0/+24 |
| | |||||
* | marked test as nonPortable | vincentdarley | 2003-12-16 | 1 | -2/+2 |
| |