Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed a typo in today's date. | Kevin B Kenny | 2001-04-04 | 1 | -1/+1 |
| | |||||
* | (TIP#27) Changed a number of Tcl API's to accept "CONST char*" | Kevin B Kenny | 2001-04-04 | 16 | -225/+262 |
| | | | | in place of simple "char*". (kennykb) [Patch #404026] | ||||
* | Corrected out of date comment | dgp | 2001-04-04 | 1 | -3/+3 |
| | |||||
* | change for tclListObj.c | hobbs | 2001-04-04 | 1 | -0/+6 |
| | |||||
* | * generic/tclListObj.c (Tcl_SetListObj): set objPtr->length = 0 in | hobbs | 2001-04-04 | 1 | -1/+2 |
| | | | | | empty object case to maintain sanctity of Tcl_Obj bytes/length pairing. (porter) [Patch #405998] | ||||
* | give mklinks its own target | hobbs | 2001-04-04 | 1 | -5/+8 |
| | |||||
* | Typo in comment | dgp | 2001-04-04 | 1 | -2/+2 |
| | |||||
* | 2001-04-03 Andreas Kupries <andreas_kupries@users.sourceforge.net> | andreas_kupries | 2001-04-03 | 4 | -3/+73 |
| | | | | | | | | | * unix/mkLinks: Added 'Signal.3', 'Tcl_WaitPid'. * doc/DetachPids.3: Added description of 'Tcl_WaitPid' [Bug #219173]. * doc/Signal.3: New man page describing the public API procedures 'Tcl_SignalId' and 'Tcl_SignalMsg' [Bug #219172]. | ||||
* | * README: | hobbs | 2001-04-03 | 4 | -12/+12 |
| | | | | | * win/README: * win/README.binary: further notes corrections. | ||||
* | * win/configure: | hobbs | 2001-04-03 | 3 | -2/+7 |
| | | | | * win/tcl.m4 (SHLIB_LD): added -incremental:no. [Bug #219381] | ||||
* | * README: | hobbs | 2001-04-02 | 6 | -126/+100 |
| | | | | | | | | * mac/README: * win/README: * win/README.binary: * unix/README: updated patchlevel information to 8.4a3 and updated links and notes. | ||||
* | * generic/tcl.h: | hobbs | 2001-04-02 | 7 | -13/+13 |
| | | | | | | | | | * tools/tcl.wse.in: * win/configure.in (VER): * win/configure: * unix/configure: * unix/configure.in (VER): * unix/tcl.spec: updated patchlevel information to 8.4a3 | ||||
* | * generic/tclCkalloc.c (TclFinalizeMemorySubsystem): set curTagPtr | hobbs | 2001-03-31 | 3 | -3/+13 |
| | | | | | | | | to NULL to allow for reuse. * generic/tclEvent.c (Tcl_Finalize): moved the tsdPtr initialization inside the subsystemsInitialized check to prevent it potentially getting called twice during finalization. (wu) [Patch #403532, Bug #219391] | ||||
* | * generic/tclThreadTest.c (Tcl_ThreadObjCmd): cast fixes | hobbs | 2001-03-31 | 1 | -3/+3 |
| | |||||
* | * win/tclWinSock.c (SocketEventProc): Fixed race condition in | hobbs | 2001-03-31 | 2 | -2/+9 |
| | | | | | readability of socket on Windows. [Patch #410674, Bug #219205 #219333] | ||||
* | * generic/tclTest.c (TestChannelCmd): added cast to mollify | hobbs | 2001-03-31 | 1 | -2/+2 |
| | | | | Windows debug build. | ||||
* | see ChangeLog | hobbs | 2001-03-30 | 1 | -0/+9 |
| | |||||
* | * win/Makefile.in (install-libraries): removed extra \s that broke | hobbs | 2001-03-30 | 1 | -10/+10 |
| | | | | | | the target. (install-doc): improved install-* targets to use their base build dependency. | ||||
* | * win/tcl.m4: added imm32.lib to LIBS_GUI for Tk IME support. | hobbs | 2001-03-30 | 1 | -1/+1 |
| | |||||
* | 2001-03-30 Andreas Kupries <andreas_kupries@users.sourceforge.net> | andreas_kupries | 2001-03-30 | 10 | -22/+142 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * All of the changes below belong to TIP #10 [Tcl I/O Enhancement: Thread-Aware Channels]. See also [Patch #403358] at SF. * generic/tclIO.h (struct ChannelState, line 236f): Extended the structure with a new field of type 'Tcl_ThreadId' to hold the id of the thread currently managing all channels with this state. Note: This structure is shared by all channels in a stack of transformations. * generic/tclIO.c (Tcl_CreateChannel, lines 1058-1065): Modified to store the Id of the current thread in the 'ChannelState' of the new channel. * generic/tclIO.c (Tcl_SpliceChannel, lines 2265-2270): Modified in the same manner as 'Tcl_CreateChannel' as the channel will be managed by the current thread afterward. * generic/tclIO.c (Tcl_GetChannelThread, lines 1478-1503): * generic/tcl.decls (Tcl_GetChannelThread, lines 1504-1506): New API function to retrieve the Id of the managing thread from a channel. Implementation and declaration. * generic/tclTest.c (TestChannelCmd, lines 4520-4532): Added subcommand 'mthread' to query a channel about its managing thread. | ||||
* | doc fixes | hobbs | 2001-03-30 | 1 | -0/+4 |
| | |||||
* | * doc/tcltest.n: corrected incorrect macro usage. | hobbs | 2001-03-30 | 1 | -46/+47 |
| | |||||
* | * doc/lsort.n: corrected unbalanced nroff macros. | hobbs | 2001-03-30 | 1 | -3/+2 |
| | |||||
* | * tests/interp.test: Print out warning when | mdejong | 2001-03-29 | 2 | -2/+30 |
| | | | | | | testinterpdelete command is not defined. Add tests that checks to make sure a child interp inherits the parent's cwd. | ||||
* | * unix/tclUnixPipe.c (TclpCreateTempFile): prevent potential race | hobbs | 2001-03-29 | 2 | -3/+12 |
| | | | | | condition and security leak in tmp filename creation. (max) [Patch #402924] | ||||
* | see ChangeLog | hobbs | 2001-03-29 | 1 | -0/+10 |
| | |||||
* | * unix/configure: | hobbs | 2001-03-29 | 2 | -31/+53 |
| | | | | | * unix/tcl.m4: corrected IRIX-5.x config to not use -n32. (english) [Patch 403626] | ||||
* | * unix/tclUnixThrd.c (Tcl_ConditionWait): fixed handling of | hobbs | 2001-03-29 | 1 | -2/+11 |
| | | | | | timeout for threads (corrects excessive CPU usage issue for Tk on Unix in threaded Tcl environment). (ruppert) [Bug #411603] | ||||
* | Added notes to clarify behaviour of [lsort] and many examples. | dkf | 2001-03-29 | 2 | -2/+88 |
| | |||||
* | see changes | hobbs | 2001-03-28 | 1 | -0/+9 |
| | |||||
* | * tests/regexp.test (regexp-19.1): | hobbs | 2001-03-28 | 2 | -18/+9 |
| | | | | | * generic/tclCmdMZ.c (Tcl_RegsubObjCmd): fixed handling of nulls in subspec value. | ||||
* | * doc/Alloc.3: corrected docs to note that Tcl_Attempt* return | hobbs | 2001-03-28 | 1 | -3/+3 |
| | | | | char *'s, not ints. [Bug #411388] | ||||
* | Correction to patch from 2001-01-18 | dgp | 2001-03-26 | 2 | -3/+8 |
| | | | | tclDecls.h was not generated using 'make genstubs'. Typos in case. | ||||
* | Removed tclWinTCharEncoding (static variable in win/tclWin32Dll.c) | dkf | 2001-03-26 | 2 | -2/+6 |
| | |||||
* | see changes | hobbs | 2001-03-24 | 1 | -0/+8 |
| | |||||
* | * generic/tclNamesp.c (Tcl_Import): Correctly freed a DString. | hobbs | 2001-03-24 | 1 | -1/+3 |
| | | | | (lavana) [Patch #403755] | ||||
* | * generic/tclVar.c (Tcl_ArrayObjCmd): Corrected retrieval of | hobbs | 2001-03-24 | 1 | -2/+9 |
| | | | | resultPtr to prevent possible corruption. | ||||
* | Error behaviour of [unset] was changed to agree with documentation, so | dkf | 2001-03-15 | 2 | -14/+9 |
| | | | | must change associated test as well. | ||||
* | * library/package.tcl (pkg_mkIndex): Added patch from Vince | dgp | 2001-03-14 | 2 | -1/+27 |
| | | | | | Darley to make [pkg_mkIndex -verbose] even more verbose. [Bug 219349, Patch 403529] | ||||
* | Improved documentation for [info hostname]. | dkf | 2001-03-13 | 2 | -1/+15 |
| | |||||
* | Made [unset] command behave as documented when no arguments present. | dkf | 2001-03-13 | 2 | -2/+11 |
| | |||||
* | A missing return was causing memory corruption in [string map]. | dkf | 2001-03-13 | 2 | -1/+5 |
| | |||||
* | Added some casts to ClientData that are apparently needed on some | dkf | 2001-03-13 | 2 | -5/+11 |
| | | | | architectures for a clean compile. | ||||
* | Fixed some string test numberings and added a test. | dkf | 2001-03-12 | 2 | -3/+12 |
| | |||||
* | Added SF bug/patch numbers to recent log messages. | dgp | 2001-03-06 | 1 | -1/+2 |
| | |||||
* | Fixed two faults with [unset -nocomplain]; one with a possible overrun | dkf | 2001-03-06 | 4 | -18/+34 |
| | | | | of the argument array, and another with the documentation. | ||||
* | Fixed bug that could leave saved data for [info level] pointing into | dkf | 2001-03-02 | 2 | -10/+41 |
| | | | | unallocated memory. | ||||
* | Corrected earlier missing change log entry for 'clock' documentation. | Kevin B Kenny | 2001-02-25 | 1 | -0/+6 |
| | |||||
* | Added test in execute.test for evaluation of an expression in a | Miguel Sofer | 2001-02-23 | 1 | -0/+4 |
| | | | | | | variable; evals once by compiling, second time using the previous compilation. *This refers to the previous patch to ChangeLog, which was mistakenly left without a comment* | ||||
* | *** empty log message *** | Miguel Sofer | 2001-02-23 | 1 | -0/+6 |
| |