summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* see ChangeLoghobbs2001-03-301-0/+9
|
* * win/Makefile.in (install-libraries): removed extra \s that brokehobbs2001-03-301-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.hobbs2001-03-301-1/+1
|
* 2001-03-30 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-03-3010-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 fixeshobbs2001-03-301-0/+4
|
* * doc/tcltest.n: corrected incorrect macro usage.hobbs2001-03-301-46/+47
|
* * doc/lsort.n: corrected unbalanced nroff macros.hobbs2001-03-301-3/+2
|
* * tests/interp.test: Print out warning whenmdejong2001-03-292-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 racehobbs2001-03-292-3/+12
| | | | | condition and security leak in tmp filename creation. (max) [Patch #402924]
* see ChangeLoghobbs2001-03-291-0/+10
|
* * unix/configure:hobbs2001-03-292-31/+53
| | | | | * unix/tcl.m4: corrected IRIX-5.x config to not use -n32. (english) [Patch 403626]
* * unix/tclUnixThrd.c (Tcl_ConditionWait): fixed handling ofhobbs2001-03-291-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.dkf2001-03-292-2/+88
|
* see changeshobbs2001-03-281-0/+9
|
* * tests/regexp.test (regexp-19.1):hobbs2001-03-282-18/+9
| | | | | * generic/tclCmdMZ.c (Tcl_RegsubObjCmd): fixed handling of nulls in subspec value.
* * doc/Alloc.3: corrected docs to note that Tcl_Attempt* returnhobbs2001-03-281-3/+3
| | | | char *'s, not ints. [Bug #411388]
* Correction to patch from 2001-01-18dgp2001-03-262-3/+8
| | | | tclDecls.h was not generated using 'make genstubs'. Typos in case.
* Removed tclWinTCharEncoding (static variable in win/tclWin32Dll.c)dkf2001-03-262-2/+6
|
* see changeshobbs2001-03-241-0/+8
|
* * generic/tclNamesp.c (Tcl_Import): Correctly freed a DString.hobbs2001-03-241-1/+3
| | | | (lavana) [Patch #403755]
* * generic/tclVar.c (Tcl_ArrayObjCmd): Corrected retrieval ofhobbs2001-03-241-2/+9
| | | | resultPtr to prevent possible corruption.
* Error behaviour of [unset] was changed to agree with documentation, sodkf2001-03-152-14/+9
| | | | must change associated test as well.
* * library/package.tcl (pkg_mkIndex): Added patch from Vincedgp2001-03-142-1/+27
| | | | | Darley to make [pkg_mkIndex -verbose] even more verbose. [Bug 219349, Patch 403529]
* Improved documentation for [info hostname].dkf2001-03-132-1/+15
|
* Made [unset] command behave as documented when no arguments present.dkf2001-03-132-2/+11
|
* A missing return was causing memory corruption in [string map].dkf2001-03-132-1/+5
|
* Added some casts to ClientData that are apparently needed on somedkf2001-03-132-5/+11
| | | | architectures for a clean compile.
* Fixed some string test numberings and added a test.dkf2001-03-122-3/+12
|
* Added SF bug/patch numbers to recent log messages.dgp2001-03-061-1/+2
|
* Fixed two faults with [unset -nocomplain]; one with a possible overrundkf2001-03-064-18/+34
| | | | of the argument array, and another with the documentation.
* Fixed bug that could leave saved data for [info level] pointing intodkf2001-03-022-10/+41
| | | | unallocated memory.
* Corrected earlier missing change log entry for 'clock' documentation.Kevin B Kenny2001-02-251-0/+6
|
* Added test in execute.test for evaluation of an expression in aMiguel Sofer2001-02-231-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 Sofer2001-02-231-0/+6
|
* added test for evaluation of an expression in a variable; evals onceMiguel Sofer2001-02-231-1/+7
| | | | by compiling, second time using the previous compilation
* Updated documentation to reflect the addition of compat/strftime.c,Kevin B Kenny2001-02-181-27/+85
| | | | including the correct formatting of ISO-8601:1988 fiscal week number (%V).
* [split $string ""] now shares character strings in the resulting list,dkf2001-02-162-2/+30
| | | | | giving better performance for smallish strings, and *much* better performance for large (especially multi-megabyte) ones.
* Spelling fix.dgp2001-02-021-2/+2
|
* D'oh! The checkbook problem! It's 200*1* now, you fool!dgp2001-02-011-3/+3
|
* 2000-01-31 Don Porter <dgp@users.sourceforge.net>dgp2001-01-312-3/+7
| | | | | * win/makefile.vc (install-libraries): Corrected misdirected install directory for the msgcat 1.2 package.
* 2000-01-30 Don Porter <dgp@users.sourceforge.net>dgp2001-01-302-11/+23
| | | | | | | | | | * generic/tclIO.c (CopyData): Moved code that updates the count of how many bytes are left to copy. Corrects bug that when writing occurs in the background, the copy loop could be escaped without updating the count, causing CopyData() to try to copy more bytes than the toRead value originally passed to TclCopyChannel(), leading to hangs and misreporting of number of bytes copied. [Bug 118203, Patch 103432]
* Clarified last log entry.dgp2001-01-191-1/+2
|
* 2000-01-18 Andreas Kupries <a.kupries@westend.com>andreas_kupries2001-01-189-67/+98
| | | | | | | | | | | | | | | | | | | | | | | | | * Everything below belongs together, it fixes bug #123153. * generic/tcl.h (line 342): A bit more explanation about the default value for TCL_PRESERVE_BINARY_COMPATABILITY. * generic/tcl.h (line 1208): Removed the macro 'Tcl_InitHashTable' as it kills binary compatibility to 8.3 and earlier versions. This is the main part of the patch/change. * generic/tcl.decls (line 1469): * generic/tclHash.c (Tcl_InitHashTable): * generic/tclHash.c (Tcl_InitHashTableEx): * generic/tclObj.c (Tcl_InitObjHashTable): Changed 'Tcl_InitHashTableEx' to 'Tcl_InitCustomHashTable'. This change is more of an estethical nature, replacing the ubiquitous 'Ex' suffix with a more meaningful name. The introduced binary incompatibility is deemed acceptable as it is between alpha versions. Updated callers. * doc/Hash.3: * unix/mkLinks: Changed 'Tcl_InitHashTableEx' to 'Tcl_InitCustomHashTable'.
* Added missing nroff directive.dkf2001-01-161-1/+2
|
* Fixes tests when spaces exist in install pathnames.dkf2001-01-124-6/+15
| | | | (Applies patch #103174 which fixes bug #119406.)
* 2001-01-04 Don Porter <dgp@users.sourceforge.net>dgp2001-01-044-16/+55
| | | | | | | | | | | | * tests/unixInit.test: * unix/tclUnixInit.c (TclpInitLibraryPath): * win/tclWinInit.c (TclpInitLibraryPath): Several entries in the library path ($tcl_libPath) are determined relative to the absolute path of the executable. When the executable is installed in or near the root directory of the file system, relative pathnames were being incorrectly generated, and in the worst case, memory access violations were crashing the program. [Bug 119416, Patch 102972]
* 2000-12-14 Don Porter <dgp@users.sourceforge.net>dgp2000-12-143-22/+50
| | | | | | | | | | * generic/tclExecute.c: * tests/expr-old.test: Re-wrote Tcl's [expr rand()] and [expr srand($seed)] implementations, fixing a range error on some 64-bit platforms. Added tests that detect the bug. The rewrite changes the seed -> sequence map on 64-bit platforms, only for seed >= 2^31, a slight incompatibility. [Bug 121072, Patch 102781]
* 2000-12-10 Don Porter <dgp@users.sourceforge.net>dgp2000-12-116-22/+36
| | | | | | | | | | | | | | * library/init.tcl: * library/msgcat/msgcat.tcl: * library/msgcat/pkgIndex.tcl: * library/opt/optparse.tcl: * library/opt/pkgIndex.tcl: Where [uplevel] is used in a proc to evaluate a Tcl built-in command in the caller's context, the built-in commands are now fully namespace-qualified. This prevents problems when the caller context is in a namespace where the built-in command name has been used by a command in the namespace. (For example, [::ns::set] might be called instead of the intended [::set]). [Bug #119422, Patch #102545]
* * docs/scan.n:hobbs2000-12-103-32/+45
| | | | | | | * tests/scan.test: * generic/tclScan.c (Tcl_ScanObjCmd): changed %o and %x to use strtoul instead of strtol to correctly preserve scan<>format conversion of large integers. [Patch #102663, Bug #124600]
* added change noteshobbs2000-12-101-0/+14
|