summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* file copy empty filename bug fixvincentdarley2003-06-233-2/+26
|
* 2003-06-18 Miguel Sofer <msofer@users.sf.net>Miguel Sofer2003-06-182-4/+7
| | | | | * generic/tclNamesp.c (Tcl_Export): removed erroneous comments [Bug 756744]
* backport of regsub empty string fixesvincentdarley2003-06-173-7/+63
|
* * generic/tclBasic.c:Miguel Sofer2003-06-104-26/+39
| | | | | | | * generic/tclExecute.c: let TclExecuteObjvInternal call TclInterpReady instead of relying on its callers to do so; fix for the part of [Bug 495830] that is new in 8.4. * tests/interp.test: Added tests 18.9 (knownbug) and 18.10
* * string.test (string-4.15): Added test for [string first] bugdgp2003-06-092-1/+14
| | | | | reported in Tcl 8.3, where test for all-single-byte-encoded strings was not reliable.
* Fix for [Bug 748700]Joe Mistachkin2003-06-043-4/+16
|
* add thanksdgp2003-05-231-0/+2
|
* * generic/tclObj.c (tclCmdNameType): Converted internal repdgp2003-05-232-8/+27
| | | | | | | | management of the cmdName Tcl_ObjType the opposite way, to always use the twoPtrValue instead of always using the otherValuePtr. Previous fix on 2003-05-12 broke several extensions that wanted to poke around with the twoPtrValue.ptr2 value of a cmdName Tcl_Obj, like TclBlend and e4graph. [Bug 726018]
* moved core-8-4-3 tag for macosx only fix at request of OS X maintainercore_8_4_3hobbs2003-05-231-2/+2
|
* * macosx/tclMacOSXBundle.c: fixed a problem that caused only thedas2003-05-222-0/+17
| | | | | | first call to Tcl_MacOSXOpenVersionedBundleResources() for a given bundle identifier to succeed. This caused the tcl runtime library not to be found in all interps created after the inital one.
* updated changes for 8.4.3hobbs2003-05-202-1/+87
|
* * unix/Makefile.in: do not run autoconf during 'make dist' as thehobbs2003-05-202-4/+7
| | | | configure is now a CVS-maintained file and should be up-to-date.
* * macosx/Tcl.pbproj/project.pbxproj: changed tclConfig.sh locationdas2003-05-192-1/+8
| | | | | | in versioned framework subdirectories to be identical to location in framework toplevel; fixed stub library symbolic links to be tcl version specific.
* 2003-05-16 Daniel Steffen <das@users.sourceforge.net>das2003-05-162-1/+5
| | | | * macosx/Tcl.pbproj/project.pbxproj: updated copyright year.
* * win/tclWinFile.c (TclpMatchInDirectory): revert glob code tohobbs2003-05-162-71/+49
| | | | r1.44 as 2003-04-14 optimizations broke Windows98 glob'ing.
* bumped version to 8.4.3hobbs2003-05-1511-18/+29
|
* * doc/socket.n: nroff font handling correction.hobbs2003-05-152-2/+4
|
* * library/encoding/gb2312-raw.enc (new): This is the originalhobbs2003-05-152-0/+1387
| | | | | | gb2312.enc renamed to allow for it to still be used. This is needed by Tk (unix) because X fonts with gb2312* charsets really do want the original gb2312 encoding. [Bug 557030]
* Consequent fixes from [Bug 699060]; [format] should not be too eager to demotedkf2003-05-143-3/+39
| | | | wides to ints, and should throw errors when appropriate.
* * library/encoding/gb2312.enc: copy euc-cn.enc over originalhobbs2003-05-142-92/+114
| | | | | | gb2312.enc. gb2312.enc appeared to not work as expected, and most uses of gb2312 really mean euc-cn (which may be the cause of the problem). [Bug 557030]
* * generic/tclEnv.c (TclUnsetEnv): Another putenv() copy behaviorhobbs2003-05-142-1/+12
| | | | | problem repaired when compiling on windows and using microsoft's runtime. [Bug 736421] (gravereaux)
* * generic/tclIOUtil.c: add decl for FsThrExitProc to suppresshobbs2003-05-132-2/+7
| | | | warnings.
* Removed unused variable to reduce compiler warnings. [Bug 664745]dkf2003-05-132-24/+33
|
* fix for [Bug 732477]Joe Mistachkin2003-05-136-24/+32
|
* * generic/tcl.decls:das2003-05-137-23/+130
| | | | | | | | | | | | | | | | | | | | | * macosx/tclMacOSXBundle.c: added extended version of the Tcl_MacOSXOpenBundleResources() API taking an extra version number argument: Tcl_MacOSXOpenVersionedBundleResources(). This is needed to be able to access bundle resources in versioned frameworks such as Tcl and Tk, otherwise if multiple versions were installed, only the latest version's resources could be accessed. [Bug 736774] * unix/tclUnixInit.c (Tcl_MacOSXGetLibraryPath): use new versioned bundle resource API to get tcl runtime library for TCL_VERSION. [Bug 736774] * generic/tclPlatDecls.h: * generic/tclStubInit.c: regen. * unix/tclUnixPort.h: worked around the issue of realpath() not being thread-safe on Mac OS X by defining NO_REALPATH for threaded builds on Mac OS X. [Bug 711232]
* * generic/tclInterp.c: (AliasObjCmd): Added refCounting of the wordsdgp2003-05-123-3/+22
| | | | | * tests/interp.test (interp-33.1): of the target of an interp alias during its execution. Also added test. [Bug 730244].
* * generic/tclBasic.c (TclInvokeObjectCommand): objv[argc] is nodgp2003-05-122-4/+7
| | | | | longer set to NULL (Tcl_CreateObjCommand docs already say that it should not be accessed).
* * generic/tclObj.c (tclCmdNameType): Corrected variable use of thedgp2003-05-122-7/+8
| | | | | otherValuePtr or the twoPtrValue.ptr1 fields to store a (ResolvedCmdName *) as the internal rep. [Bug 726018].
* * doc/Eval.3: Corrected prototype for Tcl_GlobalEvalObj [Bug 727622].dgp2003-05-122-2/+6
|
* * generic/tclVar.c (TclObjLookupVar): [Bug 735335] temporary fix,Miguel Sofer2003-05-123-2/+34
| | | | | disabling usage of tclNsVarNameType. * tests/var.test (var-15.1): test for [Bug 735335]
* Added comment about correcting the #723502 bug.vasiljevic2003-05-121-0/+4
|
* Corrected the Tcl bug #723502vasiljevic2003-05-121-1/+1
|
* * generic/tclIOUtil.c: ensure cd is thread-safe.hobbs2003-05-112-68/+105
| | | | [Bug #710642] (vasiljevic)
* * win/tclWinSerial.c (SerialCloseProc): correct mem leak onhobbs2003-05-112-1/+6
| | | | closing a Windows serial port [Bug #718002] (schroedter)
* * generic/tclCmdMZ.c (Tcl_StringObjCmd): prevent string repeathobbs2003-05-102-18/+32
| | | | crash when overflow sizes were given (throws error). [Bug #714106]
* fix for [Bugs 733156, 733221]Joe Mistachkin2003-05-101-0/+15
|
* fix for [Bug 733221]Joe Mistachkin2003-05-101-4/+11
|
* fix for [Bugs 733221, 733156]Joe Mistachkin2003-05-101-21/+70
|
* fix bad cvs lf conversionJoe Mistachkin2003-05-101-1/+2
|
* fix for [Bug 731754]Joe Mistachkin2003-05-101-5/+1
|
* * library/tcltest/tcltest.tcl: The -returnCodes option to [test]dgp2003-05-052-2/+7
| | | | failed to recognize the symbolic name "ok" for return code 0.
* Corrected error message for grammar and spelling.dkf2003-05-054-9/+14
|
* glob and square brackets fixvincentdarley2003-04-293-4/+32
|
* * generic/tclBasic.c: Tcl_EvalObjv() failed to honor thedgp2003-04-252-4/+15
| | | | | | TCL_EVAL_GLOBAL flag when resolving command names. Tcl_EvalEx passed a string rep including leading whitespace and comments to TclEvalObjvInternal().
* * win/tclWinThrd.c: Applied SF patch #727271. This patch changesandreas_kupries2003-04-252-9/+65
| | | | | | | | | | the code to catch any errors returned by the windows functions handling TLS ASAP instead of waiting to get some mysterious crash later on due to bogus pointers. Patch provided by Joe Mistachkin. This is a stop-gap measure to deal with the low number of ?TLS slots provided by some of the variants of Windows (60-80).
* * library/tcltest/tcltest.tcl: When the return code of a test doesdgp2003-04-212-10/+17
| | | | | | not meet expectations, report that as the reason for test failure, and do not attempt to check the test result for correctness. [Bug 725253]
* Corrected bogus commentsdgp2003-04-181-7/+2
|
* * generic/tclExecute.c (ExprCallMathFunc): remove incorrecthobbs2003-04-182-15/+20
| | | | extraneous cast from Tcl_WideAsDouble.
* Moved serial line options to their creator, open.n, from the generic pagedkf2003-04-183-203/+185
| | | | fconfigure.n which was never an obvious spot for them. [Bug 679010]
* * generic/tcl.h Made changes so that the "wideInt" Tcl_ObjTypedgp2003-04-1611-287/+135
| | | | | | | | | | | | | | | | | | | | | | * generic/tclObj.c is defined on all platforms, even those where * generic/tclPort.h TCL_WIDE_INT_IS_LONG is defined. Also made the Tcl_Value struct have a wideValue field on all platforms. This is a ***POTENTIAL INCOMPATIBILITY*** for TCL_WIDE_INT_IS_LONG platforms because that struct changes size. This is the same TIP 72 incompatibility that was seen on other platforms at the 8.4.0 release, when this change should have happened as well. [Bug 713562] * generic/tclInt.h: New internal macros TclGetWide() and TclGetLongFromWide() to deal with both forms of the "wideInt" Tcl_ObjType, so that conditional TCL_WIDE_INT_IS_LONG code is confined to the header file. * generic/tclCmdAH.c: Replaced most coding that was conditional * generic/tclCmdIL.c: on TCL_WIDE_INT_IS_LONG with code that * generic/tclExecute.c: works across platforms, sometimes using * generic/tclTest.c: the new macros above to do it. * generic/tclUtil.c: * generic/tclVar.c: