Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improved list of files to ignore | dkf | 2007-12-01 | 1 | -17/+18 |
| | |||||
* | win/makefile.vc: add ws2_32.lib to baselibs | hobbs | 2007-11-30 | 2 | -2/+3 |
| | |||||
* | * win/configure, win/tcl.m4: add ws2_32.lib / -lws2_32 to build. | hobbs | 2007-11-30 | 4 | -287/+92 |
| | | | | | * win/tclWinSock.c: remove dyn loading of winsock, assume that it is always available now. | ||||
* | * generic/tclWinSock.c (InitializeHostName): Correct error in | dgp | 2007-11-29 | 2 | -3/+10 |
| | | | | | | buffer length tracking. After gethostname() writes into a buffer, convert only the written string to internal encoding, not the whole buffer. | ||||
* | * generic/tclConfig.c: Corrected failure of the [::foo::pkgconfig] | dgp | 2007-11-28 | 2 | -11/+32 |
| | | | | | command to clean up registered configuration data when the query command is deleted from the interp. [Bug 983501]. | ||||
* | * generic/tclNamesp.c (Tcl_SetEnsembleMappingDict): Added checks | dgp | 2007-11-28 | 2 | -2/+28 |
| | | | | | that the dict value passed in is in the format required to make the internals of ensembles work. | ||||
* | * generic/tclIO.c: Simplify test and improve accuracy of error | dgp | 2007-11-28 | 2 | -5/+9 |
| | | | | message in latest changes. | ||||
* | Extra channel tests to check for no -eofchar | patthoyts | 2007-11-28 | 1 | -1/+10 |
| | |||||
* | -eofchar must support no eofchar. | patthoyts | 2007-11-28 | 2 | -3/+7 |
| | |||||
* | * generic/tclBasic.c: remove unneeded call in Tcl_CreateInterp, | Miguel Sofer | 2007-11-28 | 2 | -8/+11 |
| | | | | add comments | ||||
* | * win/tclWinSock.c: Add mising encoding conversion of the [info | dgp | 2007-11-27 | 2 | -5/+13 |
| | | | | hostname] value from the system encoding to Tcl's internal encoding. | ||||
* | * doc/chan.n: "Fix" the limitation on channel -eofchar | dgp | 2007-11-27 | 5 | -16/+41 |
| | | | | | | | * doc/fconfigure.n: values to single byte characters by documenting * generic/tclIO.c: it and making it fail loudly. Thanks to * tests/chan.test: Stuart Cassoff for contributing the fix. [Bug 800753] | ||||
* | * generic/tclBasic.c: | Miguel Sofer | 2007-11-26 | 5 | -18/+72 |
| | | | | | | | | | * generic/tclInt.h: * unix/tclUnixInit.c: * unix/tclUnixThrd.c: Fix stack checking via workaround for bug in glibc's pthread_attr_get_np, patch from [Bug 1815573]. Many thanks to Sergei Golovan (aka Teo) for detecting the bug and helping diagnose and develop the fix. | ||||
* | Added bug number | dkf | 2007-11-24 | 1 | -1/+1 |
| | |||||
* | Fix stack corruption in [dict append] compiler | dkf | 2007-11-24 | 2 | -40/+49 |
| | |||||
* | * generic/tclIORChan.c: Fixed a problem with reflected | andreas_kupries | 2007-11-24 | 3 | -13/+168 |
| | | | | | | | | | | | | | | | | | | channels. 'chan postevent' is defined to work only from within the interpreter containing the handler command. Sensible, we want only handler commands to use it. It identifies the channel by handle. The channel moves to a different interpreter or thread. The interpreter containing the handler command doesn't know the channel any longer. 'chan postevent' fails, not finding the channel any longer. Uhm. Fixed by creating a second per-interpreter channel table, just for reflected channels, where each interpreter remembers for which reflected channels it has the handler command. This info does not move with the channel itself. The table is updated by 'chan create', and used by 'chan postevent'. * tests/ioCmd.test: Updated the testsuite. | ||||
* | Remove #ifdef out accidentally left in | dkf | 2007-11-23 | 1 | -4/+1 |
| | |||||
* | * generic/tclVar.c (Tcl_ArrayObjCmd): handle the right data for | hobbs | 2007-11-23 | 3 | -7/+21 |
| | | | | * tests/var.test (var-14.2): [array names $var -glob $ptn] | ||||
* | Turn the [string] command into a real compiled ensemble. | dkf | 2007-11-23 | 7 | -333/+452 |
| | |||||
* | Rebuild [dict] as a full compiled ensemble. | dkf | 2007-11-22 | 6 | -612/+785 |
| | |||||
* | Rewrote the [string] and [dict] implementations to be ready for conversion | dkf | 2007-11-22 | 3 | -1143/+2033 |
| | | | | to ensembles. | ||||
* | Flag shimmering bug found in [string range]. | dkf | 2007-11-22 | 2 | -1/+11 |
| | |||||
* | Generalize the ensemble compiler further. Still doesn't precopile rewrites, ↵ | dkf | 2007-11-21 | 2 | -50/+146 |
| | | | | | | but now handles many other things making the compiler at least useful. | ||||
* | Factor out the core compiled-ensemble builder for simplicity. | dkf | 2007-11-21 | 4 | -47/+98 |
| | |||||
* | A little more errorCode goodness | dkf | 2007-11-21 | 2 | -4/+15 |
| | |||||
* | Trim the fat from the source | dkf | 2007-11-21 | 1 | -310/+280 |
| | |||||
* | Added "Potential Incompat" warning. | dkf | 2007-11-20 | 1 | -0/+3 |
| | |||||
* | * generic/tclDictObj.c: Changed the underlying implementation of the | dkf | 2007-11-20 | 10 | -237/+416 |
| | | | | | | | | | hash table used in dictionaries to additionally keep all entries in the hash table in a linked list, which is only ever added to at the end. This makes iteration over all entries in the dictionary in key insertion order a trivial operation, and so cleans up a great deal of complexity relating to dictionary representation and stability of iteration order. | ||||
* | Typo | dkf | 2007-11-20 | 1 | -44/+41 |
| | |||||
* | Minor fix | dkf | 2007-11-20 | 1 | -15/+0 |
| | |||||
* | Correct usage of Tcl_WrongNumArgs | dkf | 2007-11-20 | 2 | -5/+25 |
| | |||||
* | tag bumpcore_8_5_b3 | dgp | 2007-11-19 | 1 | -12/+12 |
| | |||||
* | Olson's tzdata2007i imported | Kevin B Kenny | 2007-11-19 | 10 | -926/+999 |
| | |||||
* | missing contributor names, minor additions for 8.5b3 | das | 2007-11-19 | 1 | -34/+39 |
| | |||||
* | * README: Bump version number to 8.5b3. | dgp | 2007-11-19 | 10 | -16/+29 |
| | | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf (2.59) * win/configure: | ||||
* | * changes: Updated for 8.5b3 release. | dgp | 2007-11-19 | 2 | -1/+37 |
| | |||||
* | INST_EXIST_*: simplify result setting | das | 2007-11-19 | 1 | -26/+9 |
| | |||||
* | improvements to comments | dkf | 2007-11-19 | 1 | -39/+43 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 1 | -67/+51 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 1 | -109/+102 |
| | |||||
* | formatting | das | 2007-11-19 | 1 | -66/+66 |
| | |||||
* | Fix accidentally damaged tests | dkf | 2007-11-19 | 1 | -13/+5 |
| | |||||
* | Simplifications (fewer casts, less manual bit twiddling) | dkf | 2007-11-19 | 1 | -192/+191 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 1 | -239/+265 |
| | |||||
* | Spelling mistake in comment! | dkf | 2007-11-19 | 1 | -2/+2 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 1 | -77/+72 |
| | |||||
* | improvements to comments | dkf | 2007-11-19 | 2 | -7/+31 |
| | |||||
* | eschew superfluous whitespace | dkf | 2007-11-19 | 1 | -3/+3 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 2 | -137/+136 |
| | |||||
* | Reduce cast count. | dkf | 2007-11-19 | 1 | -40/+40 |
| |