summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* minor fs, vfs fixesvincentdarley2001-09-0429-320/+774
|
* fixed incorrect opreands for INST_LIST [Bug: 458241]Miguel Sofer2001-09-042-2/+7
|
* * generic/tclExecute.c (TclExecuteByteCode): fixed missing commahobbs2001-09-032-2/+7
| | | | in debug macro.
* doc bugfix (bug #457435)dkf2001-09-032-3/+8
|
* correct to note tclInt.h change instead of tcl.h for TclCompileListCmd headerhobbs2001-09-031-1/+1
|
* no messagedavygrvy2001-09-031-0/+4
|
* * win/tclWinThrd.c: Moved FinalizeConditionEvent() proto to withindavygrvy2001-09-031-3/+5
| | | | | the main #ifdef TCL_THREADS block to avoid mingw warning about it being there but unused.
* no messagedavygrvy2001-09-031-0/+7
|
* * win/makefile.vc: Added -Zl (zee el) to tclStubLib.c compile linedavygrvy2001-09-031-2/+2
| | | | | | | | to make sure the tclstub84.lib static library is built without requiring a specific C-runtime library at link-time for the end-use developer. It has been noted on c.l.t that this trips many first time users trying to make extensions. [Patch: 403533]
* no messagedavygrvy2001-09-031-0/+1
|
* * win/tclWinThrd.c: Portability fix for Cygwin who's c-runtime,davygrvy2001-09-031-1/+15
| | | | | | not surprisingly, doesn't have the MSVCRT specific _beginthreadex / _endthreadex pair. This might have to be revisited for proper Borland, lcc32, Watcom and other support as well.
* no messagedavygrvy2001-09-031-0/+7
|
* * generic/tcl.h: added TclCompileListCmd headerhobbs2001-09-015-7/+116
| | | | | | | | * generic/tclBasic.c: added TclCompileListCmd compile proc * generic/tclCompCmds.c (TclCompileListCmd): function to compile the 'list' command at parse time. * generic/tclExecute.c (TclExecuteByteCode): definition of INST_LIST bytecode.
* * doc/StringObj.3: added words of warning to use Tcl_ResetResulthobbs2001-08-312-17/+8
| | | | with the Tcl_Append* functions.
* * tests/compile.test: added compile-11.* interp result checkshobbs2001-08-313-16/+58
| | | | | | | | | * generic/tclUtil.c (TclGetIntForIndex): added Tcl_ResetResult before Tcl_AppendStringsToObj to prevent shared object crash when called from bcc instruction. The Tcl_Append* calls that append to the result object that are invoked by bcc insts must remember to call Tcl_ResetResult because the bcc doesn't do this for us. [Bug #456892]
* * generic/tclIndexObj.c: fixed some casting problems that upsethobbs2001-08-302-5/+10
| | | | Crays. [Bug #419528] (andreasen)
* * Silence warning from Sun compiler. [Bug 454374]dgp2001-08-302-2/+6
|
* allow cached fully-qualified command names to be usable from differentMiguel Sofer2001-08-302-1/+27
| | | | namespaces within the same interpreter without forcing a new lookup. This speeds up scripts that pass command names in variables ("this" in some OO packages). [Patch 456668].
* filesystemvincentdarley2001-08-3036-1876/+1319
|
* no messagedavygrvy2001-08-301-0/+14
|
* * generic/tclAsync.c:davygrvy2001-08-303-5/+32
| | | | | | | | | | | | | * generic/tclEvent.c: * generic/tclInt.h: Improper cleanup of asyncMutex in tclAsync.c repaired. TclFinalizeSynchronization() was trying to remove a registered mutex that was dumped earlier when the TSD it was stored in was cleared. This was only surfacing on *nix. Windows was being masked by mutexes not actually being returned to the system! That was repaired in a previous patch. Needed to add a private TclFinalizeAsync() to tclAsync.c and called from Tcl_FinalizeThread(). Pheww.. Is this done yet? [Bug: 414419] requested by Rob Ratcliff <rrr6399@futuretek.com>
* * generic/tclCompCmds.c (TclPushVarName): noted 'static' defn.hobbs2001-08-282-2/+7
| | | | [Bug #453872]
* * Correcteddgp2001-08-275-38/+40
| | | | | | inconsistency between the search path for script libraries and the directory name $DISTNAME into which distributions built by 'make test' unpack. [Bug 455642]
* formatting correctionsdgp2001-08-251-3/+9
|
* Typo corrections.dgp2001-08-251-2/+2
|
* * tests/stringComp.test: added string-1.3hobbs2001-08-253-3/+21
| | | | | | | * generic/tclCompCmds.c (TclCompileStringCmd): changed to return TCL_OUT_LINE_COMPILE instead of TCL_ERROR when compiling and an unknown string method is called. This is necessary as the string command may be never called, or not until 'string' is redefined.
* documentation updatesvincentdarley2001-08-241-1/+8
|
* documented subtlety with glob and windows pathsvincentdarley2001-08-241-1/+12
|
* documented path length restrictionsvincentdarley2001-08-241-1/+5
|
* * Corrected expected resultdgp2001-08-242-2/+9
| | | | to match Tcl's quirky construction of its init library path.
* typo fixdgp2001-08-241-2/+2
|
* 2001-08-23 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-08-232-3/+13
| | | | | | | | | | * win/tclWinPipe.c (BuildCommandLine): Fixed tcl Bug [432499]. Part of the code used the non-absolute path to the executable to determine quoting. This failed if the absolute path cotained spaces, but the application name itselfl not. This bug caused no trouble on Win NT 5, but does for other variants in the Win* family. Report and fix due to Ken Poole <kenpoole@users.sourceforge.net>.
* added QNX-6 build support. [Bug #219410] (loverso)hobbs2001-08-233-22/+51
|
* corrected minor compiler warningshobbs2001-08-234-23/+21
|
* fs updatevincentdarley2001-08-2324-1086/+2039
|
* clarified bug reference.dgp2001-08-231-1/+1
|
* Fixed annoying fault in [binary format] on 64-bit architectures.dkf2001-08-232-3/+8
|
* Small improvement in tests (constraint vs. conditionally run tests)dkf2001-08-232-32/+20
|
* see ChangeLoghobbs2001-08-221-0/+17
|
* updated dde to 1.2hobbs2001-08-221-2/+2
|
* * doc/dde.n: fixed dde man page (which was totally incorrect).hobbs2001-08-223-100/+140
| | | | | | | * tests/winDde.test: * win/tclWinDde.c (Tcl_DdeObjCmd): added -binary option to dde request command to allow for returning binary data. [Bug #227482] Updated dde to 1.2
* * library/tcltest/tcltest.tcl: fixed stdio constraint test.hobbs2001-08-221-54/+27
| | | | | [Patch #454050] (stanton) Simplified unixExecs constriant test.
* * tests/tcltest.test: added unixExecs constraint to files thathobbs2001-08-221-4/+4
| | | | used 'grep' in the test. [Bug #453143]
* updated install target for dde1.2hobbs2001-08-222-10/+12
|
* * Corrected errors in testsdgp2001-08-222-16/+24
| | | | revealed by fix of overagressive compiler. [Bug 451200]
* Fixed overagressive compilation of [catch], [Bug #219184]Miguel Sofer2001-08-223-6/+37
|
* * tests/tcltest.test (tcltest-12.2): fixed test that would breakhobbs2001-08-222-3/+8
| | | | when env vars weren't Tcl list friendly [Patch #454046] (stanton)
* * library/http/http.tcl (geturl): added port number to Host:hobbs2001-08-212-3/+8
| | | | header to comply with HTTP/1.1 spec (RFC 2068). [Bug #452217]
* Fixed incorrect year 8.4a3 was released. 10 days ago, not a year and 10 ↵davygrvy2001-08-161-2/+2
| | | | days ago.
* no messagedavygrvy2001-08-161-0/+4
|