summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * doc/tcltest.n: Bump to version tcltest 2.3.0 to accountdgp2006-09-118-19/+27
| | | | | | | | | * library/tcltest/pkgIndex.tcl: for new "-verbose line" feature. * library/tcltest/tcltest.tcl: * unix/Makefile.in: * win/Makefile.in: * win/makefile.bc: * win/makefile.vc:
* * library/msgcat/msgcat.tcl: Bump to version msgcat 1.4.2 to accountdgp2006-09-103-3/+8
| | | | * library/msgcat/pkgIndex.tcl: for modifications.
* * library/msgcat/msgcat.tcl (msgcat::Init): on Darwin, add fallback ofdas2006-09-1011-746/+907
| | | | | | | | | | | | | | | | | | * tests/msgcat.test: default msgcat locale to * unix/tclUnixInit.c (TclpSetVariables): current CFLocale identifier if available (via private ::tcl::mac::locale global, set at interp init when on Mac OS X 10.3 or later with CoreFoundation). * library/tcltest/tcltest.tcl: add 'line' verbose level: prints source * doc/tcltest.n: file line information of failing tests. * macosx/Tcl.xcodeproj/project.pbxproj: add new tclUnixCompat.c file; revise tests target to use new tcltest 'line' verbose level. * unix/configure.in: add descriptions to new AC_DEFINEs for MT-safe. * unix/tcl.m4: add caching to new SC_TCL_* macros for MT-safe wrappers. * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Added special handling for Darwin where gethostbyname/addr are actuallyvasiljevic2006-09-084-15/+53
| | | | MT-safe per-se.
* * unix/tclUnixCompat.c: Fixed conditions for CopyArray/CopyString,andreas_kupries2006-09-082-6/+11
| | | | and CopyHostent. Also fixed bad var names in TclpGetHostByName.
* unix/tclUnixCompat.c: Added fallback to MT-unsafevasiljevic2006-09-072-21/+69
| | | | | | library calls if TCL_THREADS is not defined. Fixed alignment of arrays copied by CopyArrayi() to be on the sizeof(char *) boundary.
* Rewritten MT-safe wrappers to return ptrs to TSD storage.vasiljevic2006-09-076-217/+169
|
* Use MODULE_SCOPE declaration where appropriatevasiljevic2006-09-061-7/+7
|
* Added for fixing Tcl Bug 999544vasiljevic2006-09-061-0/+584
|
* Added fixes for Tcl Bug 999544 (ported from core-8-4-branch).vasiljevic2006-09-069-14/+2089
|
* typodgp2006-09-051-1/+1
|
* * generic/tclCompExpr.c: Removed much complexity that isdgp2006-09-052-292/+91
| | | | no longer needed.
* * tests/main.text (Tcl_Main-4.4): Test corrected to not bedgp2006-09-042-3/+8
| | | | timing sensitive to the Bug 1481986 fix. [Bug 1550858]
* correct package examplehobbs2006-09-042-3/+8
|
* * generic/tclCompExpr.c: Corrected flawed logic fordgp2006-08-312-1/+8
| | | | | | disabling the INST_TRY_CVT_TO_NUMERIC instruction at the end of an expression when function arguments contain operators. [Bug 1541274]
* * tests/expr-old.test: The remaining failing tests reported indgp2006-08-313-4/+11
| | | | | | * tests/expr.test: [Bug 1381715] are all new in Tcl 8.5, so there's really no issue of compatibility with Tcl 8.4 result to deal with. Fixed by updating tests to expect 8.5 results.
* * generic/tclParseExpr.c: Dropped the old expr parser.dgp2006-08-302-1965/+12
|
* * generic/tclBasic.c (Tcl_CreateInterp): init iPtr->threadIdhobbs2006-08-302-1/+4
|
* * win/tclWinChan.c [Bug 819667] Improve logic for identifying COMhobbs2006-08-302-51/+55
| | | | ports.
* see changeshobbs2006-08-301-4/+16
|
* * generic/tclIOGT.c (ExecuteCallback):hobbs2006-08-302-5/+6
| | | | | * generic/tclPkg.c (Tcl_PkgRequireEx): replace Tcl_GlobalEval(Obj) with more efficient Tcl_Eval(Obj)Ex
* * unix/Makefile.in (valgrindshell): add valgrindshell target andhobbs2006-08-301-2/+9
| | | | | update default VALGRINDARGS. User can override, or add to it with VALGRIND_OPTS env var.
* * generic/tclFileName.c (DoGlob): match incrs with decrs.hobbs2006-08-301-1/+3
|
* silence compiler warndgp2006-08-291-2/+2
|
* undo mistaken commitdgp2006-08-291-2/+2
|
* * generic/tclParseExpr.c: Use the "parent" field ofdgp2006-08-292-6/+19
| | | | | | | orphan ExprNodes to store the closure of left pointers. This lets us avoid repeated re-scanning leftward for the left boundary of subexpressions, which in worst case led to near O(N^2) runtime.
* add casts to make gcc2 happy with previous commit [Bug 1548330]das2006-08-292-31/+31
|
* Fix for stack.test failures on FreeBSDJoe Mistachkin2006-08-293-13/+11
|
* fixed [ 1548263 ] NULL return from Tcl_FSGetNormalizedPath segvcoldstore2006-08-296-22/+48
|
* ftp://elsie.nci.nih.gov/pub/tzdata2006kKevin B Kenny2006-08-284-95/+106
|
* * generic/tclStringObj.c: Revised ObjPrintfVA to take caredgp2006-08-283-25/+42
| | | | | | | | * generic/tclParseExpr.c: to copy only whole characters when doing %s formatting. This relieves callers of TclObjPrintf() and TclFormatToErrorInfo() from needing to fix arguments to character boundaries. Tcl_ParseExpr() simplified by taking advantage. [Bug 1547786]
* * generic/tclStringObj.c: Corrected TclFormatObj's failuredgp2006-08-282-4/+17
| | | | | to count up the number of arguments required by examining the format string. [Bug 1547681]
* undo last commit.dgp2006-08-282-6/+2
|
* simplification of previous commit, whitespace cleanupdas2006-08-281-13/+8
|
* fixed printf format warnings from gcc4 when TCL_COMPILE_STATS defineddas2006-08-282-10/+10
|
* Fixes for [Bug 1547662] and [Bug 1547681]Joe Mistachkin2006-08-283-7/+21
|
* bugfix, docs clarification and new tests for 'namespace upvar' [Bug 1546833]Miguel Sofer2006-08-264-17/+134
|
* * library/tzdata: Regenerated, including several new files,Kevin B Kenny2006-08-2450-2510/+4212
| | | | | | | | | from Olson's tzdata2006j. * library/clock.tcl: * tests/clock.test: Removed an early testing hack that allowed loading 'registry' from the build tree rather than an installed one. This is a workaround for [Bug 15232730], which remains open because it's a symptom of a deeper underlying problem.
* removed now no longer needed '-constraints newExprParser' arg to tcltestdas2006-08-242-6/+4
|
* * generic/tclParseExpr.c: Minimal collection of new testsdgp2006-08-233-44/+221
| | | | | | * tests/parseExpr.test: testing the error messages of the new expr parser. Several bug fixes and code simplifications that appeared during that effort.
* More test flexibilitydgp2006-08-223-50/+15
|
* * tests/compExpr-old.test: Update existing tests to not faildgp2006-08-2210-843/+686
| | | | | | | | | | | * tests/compExpr.test: with the new expr parser. * tests/compile.test: * tests/expr-old.test: * tests/expr.test: * tests/for.test: * tests/if.test: * tests/parseExpr.test: * tests/while.test:
* * generic/tclParseExpr.c: Revised mistaken call todgp2006-08-212-7/+16
| | | | | TclCheckBadOctal(), so both [expr 08] and [expr 08z] have same additional info in error message.
* * generic/tclIOUtil.c: Revisions to complete the thread finalizationdgp2006-08-212-1/+8
| | | | of the cwdPathPtr. [Bug 1536142]
* Fix the 'gdb' target.dkf2006-08-212-17/+22
|
* typo: s/Xcode 2.3/Xcode 2.4/das2006-08-212-4/+4
|
* * unix/tclUnixPort.h (Darwin): override potentially faulty configuredas2006-08-212-8/+18
| | | | | detection of termios availability in all cases, since termios is known to be present on all Mac OS X releases since 10.0. [Bug 497147]
* add support for building without -fconstant-cfstrings, e.g. when ↵das2006-08-211-3/+15
| | | | MACOSX_DEPLOYMENT_TARGET unset. [Bug 1543715]
* sync with relevant core-8-4-branch additionsdas2006-08-211-1/+25
|
* * generic/tclClock.c (ClockClicksObjCmd): add support for Darwindas2006-08-217-10/+133
| | | | | | | | | * generic/tclCmdMZ.c (Tcl_TimeObjCmd): nanosecond resolution timer * generic/tclInt.h: to [clock clicks] and [time] * unix/configure.in (Darwin): when TCL_WIDE_CLICKS defined. * unix/tclUnixTime.c (TclpGetWideClicks, TclpWideClicksToNanoseconds): * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59