summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* More bits and pieces of the TIP#174 implementationdkf2006-11-263-2/+401
|
* * tcl.m4 (Linux): --enable-64bit support. [Patch 1597389], [Bug 1230558]das2006-11-263-2/+82
| | | | * configure: autoconf-2.59
* add tclMathOp.cdas2006-11-261-0/+4
|
* Finished coding part of TIP#174. Still have tests and docs to do.dkf2006-11-257-1638/+3127
|
* Added some more implementationsdkf2006-11-241-3/+274
|
* Supply missing #ifdefdgp2006-11-241-1/+3
|
* Added Mod implementationdkf2006-11-231-2/+209
|
* Added implementations of the interpreted comparison operatorsdkf2006-11-231-15/+561
|
* Added some interpreted operator implementationsdkf2006-11-231-7/+61
|
* Silence complaints caused by [namespace import] returning current importsdkf2006-11-232-10/+6
|
* *Partial* implementation of TIP#174. Still needs non-compiled versions of mostdkf2006-11-234-4/+1135
| | | | operators, plus docs and tests.
* Date fixdkf2006-11-231-1/+1
|
* removed tools/genWinImage.tcl and win/README.binarydas2006-11-231-4/+0
|
* whitespacedas2006-11-231-5/+5
|
* [string is list] tests: fixed mixed up test name, added test of unicode handlingdkf2006-11-221-2/+6
|
* TIP#269 implementationdkf2006-11-224-14/+128
|
* * generic/tcl.h: Remove mention of win/README.binary in comment.dgp2006-11-222-2/+2
|
* * tools/genWinImage.tcl (removed): Removed two files used indgp2006-11-223-300/+4
| | | | | * win/README.binary (removed): production of binary distributions for Windows, a task we no longer perform. [Bug 1476980].
* * generic/tcl.h: Moved TCL_REG_BOSONLY #define from tcl.h todgp2006-11-223-12/+21
| | | | | | * generic/tclInt.h: tclInt.h. Only know user is Expect, which already #include's tclInt.h. No need to continue greater exposure. [Bug 926500]
* Make the guts of [chan] more robust.dkf2006-11-203-30/+64
|
* Added a missing bold highlightdkf2006-11-201-2/+2
|
* * generic/tclExecute.c (INST_EXPON): Corrected crash ondgp2006-11-172-1/+11
| | | | [expr 2**(1<<63)]. Was operating on cleared bignum Tcl_Obj.
* Added more examplesdkf2006-11-163-28/+91
|
* TIP#270 IMPLEMENTATIONdgp2006-11-1526-118/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tcl.decls: New public routines Tcl_ObjPrintf, * generic/tclStringObj.c: Tcl_AppendObjToErrorInfo, Tcl_Format, * generic/tclInt.h: Tcl_AppendLimitedToObj, Tcl_AppendFormatToObj and Tcl_AppendPrintfToObj. Former internal versions removed. * generic/tclDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclBasic.c: Updated callers. * generic/tclCkalloc.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclDictObj.c: * generic/tclExecute.c: * generic/tclIORChan.c: * generic/tclIOUtil.c: * generic/tclMain.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclPkg.c: * generic/tclProc.c: * generic/tclStrToD.c: * generic/tclTimer.c: * generic/tclUtil.c: * unix/tclUnixFCmd.c:
* * tools/genStubs.tcl: Updated script to no longer produce thedgp2006-11-158-2600/+2411
| | | | | | | | | | | | | | | _ANSI_ARGS_ wrapper in generated declarations. Also revised to accept variadic prototypes with more than one fixed argument. (This is possible since TCL_VARARGS and its limitations are no longer in use). * generic/tcl.h: Some reordering so that macro definitions do not interfere with the now _ANSI_ARGS_-less stub declarations. * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclIntPlatDecls.h: * generic/tclPlatDecls.h: * generic/tclTomMathDecls.h:
* Convert \fP to \fR for easier manual page scrapingdkf2006-11-1517-217/+225
|
* TIP#261 IMPLEMENTATIONdgp2006-11-142-2/+30
| | | | | * generic/tclNamesp.c: [namespace import] with 0 arguments introspects the list of imported commands.
* Silence a compiler warining about presenting a volatile pointer to 'memset'Kevin B Kenny2006-11-132-3/+10
|
* * generic/tclIO.c: When [gets] on a binary channel needs to usedgp2006-11-132-12/+49
| | | | | | | the "iso8859-1" encoding, save a copy of that encoding per-thread to avoid repeated freeing and re-loading of it from the file system. This replaces the cached copy of this encoding that the platform initialization code used to keep in pre-8.5 releases.
* * generic/tclCompExpr.c: fix gcc warnings about 'cast to/fromdas2006-11-1321-89/+460
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclEncoding.c: pointer from/to integer of different * generic/tclEvent.c: size' on 64-bit platforms by casting to * generic/tclExecute.c: intermediate types intptr_t/uintptr_t * generic/tclHash.c: via new PTR2INT(), INT2PTR(), * generic/tclIO.c: PTR2UINT() and UINT2PTR() macros. * generic/tclInt.h: [Patch 1592791] * generic/tclProc.c: * generic/tclTest.c: * generic/tclThreadStorage.c: * generic/tclTimer.c: * generic/tclUtil.c: * unix/configure.in: * unix/tclUnixChan.c: * unix/tclUnixPipe.c: * unix/tclUnixPort.h: * unix/tclUnixTest.c: * unix/tclUnixThrd.c: * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Regendkf2006-11-122-2/+30
|
* Transfer TclPtrMakeUpvar and TclObjLookupVar to the internal stubs table.dkf2006-11-123-11/+18
|
* suppress linker arch warnings when building universaldas2006-11-101-1/+4
|
* * tests/fCmd.test (fCmd-6.26): fix failure when env(HOME) path containsdas2006-11-106-8/+28
| | | | | | | | | | | | | | symlinks. * macosx/Tcl.xcodeproj/project.pbxproj: remove tclParseExpr.c; when running testsuite from inside Xcdoe, skip stack-3.1 (it only fails under those circumstances). * unix/tcl.m4 (Darwin): suppress linker arch warnings when building universal for both 32 & 64 bit and no 64bit CoreFoundation is available; sync with tk tcl.m4 change. * unix/configure.in: whitespace. * unix/configure: autoconf-2.59
* * generic/tclParseExpr.c (removed): Moved all the code ofdgp2006-11-098-1091/+1065
| | | | | | | | | * generic/tclCompExpr.c: tclParseExpr.c into tclCompExpr.c. * unix/Makefile.in: This sets the stage for expr compiling to * win/Makefile.in: work directly with the full parse tree * win/makefile.bc: structures, and not have to pass through * win/makefile.vc: the information lossy format of an array * win/tcl.dsp: of Tcl_Tokens.
* Optimize for the unshared case.dkf2006-11-094-26/+75
|
* Implemented [string reverse].dkf2006-11-095-15/+56
| | | | Finalizes basic TIP#272 implementation.
* Implemented [lreverse] from TIP#272dkf2006-11-096-4/+109
|
* Fix spot where bug number formating was inconsistentdkf2006-11-081-1/+1
|
* Minor simplification of memcpy usagedkf2006-11-084-73/+110
|
* Rewrite for style and clarity (esp. tclPkg.c)dkf2006-11-083-636/+803
|
* * unix/tclUnixFCmd.c (CopyFile): [SF Tcl Bug 1586470]. Added codeandreas_kupries2006-11-072-1/+17
| | | | | to fall back to a hardwired default block size should the filesystem report a bogus value.
* Minor updates (whitespace police, etc.)dkf2006-11-073-29/+29
|
* Minor changes (whitespace police, etc.)dkf2006-11-071-59/+56
|
* * generic/tclStringObj.c: Changed Tcl_ObjPrintf() response todgp2006-11-052-2/+7
| | | | | an invalid format specifier string. No longer panics; now produces an error message as output.
* TIP#274 IMPLEMENTATIONdgp2006-11-053-3/+17
| | | | | * generic/tclParseExpr.c: Exponentiation operator is now * tests/expr.test: right associative. [Patch 1556802]
* * generic/tclBasic.c (TEOVI): fix por possible leak of a CommandMiguel Sofer2006-11-042-3/+8
| | | | in the presence of execution traces that delete it.
* * generic/tclBasic.c (TEOVI):Miguel Sofer2006-11-033-12/+41
| | | | | | * tests/trace.test (trace-21.11): fix for [Bug 1590232], execution traces may cause a second command resolution in the wrong namespace.
* Rename constraint to look more conventionaldkf2006-11-031-15/+11
|
* Keep most tests from making sockets that are reachable off the machine.dkf2006-11-037-97/+98
|