Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed error launching win98 test | patthoyts | 2006-09-11 | 1 | -3/+3 |
| | |||||
* | Updated to install http, tcltest and msgcat as Tcl Modules (as per Makefile.in). | patthoyts | 2006-09-11 | 3 | -48/+68 |
| | |||||
* | * unix/Makefile.in (install-libraries): Fixed typo tcltest 2.3.9 -> 2.3.0. | andreas_kupries | 2006-09-11 | 2 | -2/+6 |
| | |||||
* | * unix/tclUnixCompat.c: make compatLock static and only declare it when | das | 2006-09-11 | 2 | -107/+116 |
| | | | | | it will actually be used; #ifdef parts of TSD that are not always needed; adjust #ifdefs to cover all possible cases; fix whitespace. | ||||
* | * tests/msgcat.test: Bumped version in auxiliary files as well. | andreas_kupries | 2006-09-11 | 3 | -4/+9 |
| | | | | * doc/msgcat.n: | ||||
* | bump msgcat version to 1.4.2 | Kevin B Kenny | 2006-09-11 | 3 | -6/+11 |
| | |||||
* | * library/msgcat/msgcat.tcl: Removed some unneeded [uplevel]s. | dgp | 2006-09-11 | 2 | -5/+8 |
| | |||||
* | * generic/tclExecute.c: Corrected INST_EXPON flaw that treated | dgp | 2006-09-11 | 3 | -5/+12 |
| | | | | * tests/expr.test: $x**1 as $x**3. [Bug 1555371] | ||||
* | * doc/tcltest.n: Bump to version tcltest 2.3.0 to account | dgp | 2006-09-11 | 8 | -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 account | dgp | 2006-09-10 | 3 | -3/+8 |
| | | | | * library/msgcat/pkgIndex.tcl: for modifications. | ||||
* | * library/msgcat/msgcat.tcl (msgcat::Init): on Darwin, add fallback of | das | 2006-09-10 | 11 | -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 actually | vasiljevic | 2006-09-08 | 4 | -15/+53 |
| | | | | MT-safe per-se. | ||||
* | * unix/tclUnixCompat.c: Fixed conditions for CopyArray/CopyString, | andreas_kupries | 2006-09-08 | 2 | -6/+11 |
| | | | | and CopyHostent. Also fixed bad var names in TclpGetHostByName. | ||||
* | unix/tclUnixCompat.c: Added fallback to MT-unsafe | vasiljevic | 2006-09-07 | 2 | -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. | vasiljevic | 2006-09-07 | 6 | -217/+169 |
| | |||||
* | Use MODULE_SCOPE declaration where appropriate | vasiljevic | 2006-09-06 | 1 | -7/+7 |
| | |||||
* | Added for fixing Tcl Bug 999544 | vasiljevic | 2006-09-06 | 1 | -0/+584 |
| | |||||
* | Added fixes for Tcl Bug 999544 (ported from core-8-4-branch). | vasiljevic | 2006-09-06 | 9 | -14/+2089 |
| | |||||
* | typo | dgp | 2006-09-05 | 1 | -1/+1 |
| | |||||
* | * generic/tclCompExpr.c: Removed much complexity that is | dgp | 2006-09-05 | 2 | -292/+91 |
| | | | | no longer needed. | ||||
* | * tests/main.text (Tcl_Main-4.4): Test corrected to not be | dgp | 2006-09-04 | 2 | -3/+8 |
| | | | | timing sensitive to the Bug 1481986 fix. [Bug 1550858] | ||||
* | correct package example | hobbs | 2006-09-04 | 2 | -3/+8 |
| | |||||
* | * generic/tclCompExpr.c: Corrected flawed logic for | dgp | 2006-08-31 | 2 | -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 in | dgp | 2006-08-31 | 3 | -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. | dgp | 2006-08-30 | 2 | -1965/+12 |
| | |||||
* | * generic/tclBasic.c (Tcl_CreateInterp): init iPtr->threadId | hobbs | 2006-08-30 | 2 | -1/+4 |
| | |||||
* | * win/tclWinChan.c [Bug 819667] Improve logic for identifying COM | hobbs | 2006-08-30 | 2 | -51/+55 |
| | | | | ports. | ||||
* | see changes | hobbs | 2006-08-30 | 1 | -4/+16 |
| | |||||
* | * generic/tclIOGT.c (ExecuteCallback): | hobbs | 2006-08-30 | 2 | -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 and | hobbs | 2006-08-30 | 1 | -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. | hobbs | 2006-08-30 | 1 | -1/+3 |
| | |||||
* | silence compiler warn | dgp | 2006-08-29 | 1 | -2/+2 |
| | |||||
* | undo mistaken commit | dgp | 2006-08-29 | 1 | -2/+2 |
| | |||||
* | * generic/tclParseExpr.c: Use the "parent" field of | dgp | 2006-08-29 | 2 | -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] | das | 2006-08-29 | 2 | -31/+31 |
| | |||||
* | Fix for stack.test failures on FreeBSD | Joe Mistachkin | 2006-08-29 | 3 | -13/+11 |
| | |||||
* | fixed [ 1548263 ] NULL return from Tcl_FSGetNormalizedPath segv | coldstore | 2006-08-29 | 6 | -22/+48 |
| | |||||
* | ftp://elsie.nci.nih.gov/pub/tzdata2006k | Kevin B Kenny | 2006-08-28 | 4 | -95/+106 |
| | |||||
* | * generic/tclStringObj.c: Revised ObjPrintfVA to take care | dgp | 2006-08-28 | 3 | -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 failure | dgp | 2006-08-28 | 2 | -4/+17 |
| | | | | | to count up the number of arguments required by examining the format string. [Bug 1547681] | ||||
* | undo last commit. | dgp | 2006-08-28 | 2 | -6/+2 |
| | |||||
* | simplification of previous commit, whitespace cleanup | das | 2006-08-28 | 1 | -13/+8 |
| | |||||
* | fixed printf format warnings from gcc4 when TCL_COMPILE_STATS defined | das | 2006-08-28 | 2 | -10/+10 |
| | |||||
* | Fixes for [Bug 1547662] and [Bug 1547681] | Joe Mistachkin | 2006-08-28 | 3 | -7/+21 |
| | |||||
* | bugfix, docs clarification and new tests for 'namespace upvar' [Bug 1546833] | Miguel Sofer | 2006-08-26 | 4 | -17/+134 |
| | |||||
* | * library/tzdata: Regenerated, including several new files, | Kevin B Kenny | 2006-08-24 | 50 | -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 tcltest | das | 2006-08-24 | 2 | -6/+4 |
| | |||||
* | * generic/tclParseExpr.c: Minimal collection of new tests | dgp | 2006-08-23 | 3 | -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 flexibility | dgp | 2006-08-22 | 3 | -50/+15 |
| | |||||
* | * tests/compExpr-old.test: Update existing tests to not fail | dgp | 2006-08-22 | 10 | -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: |