summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* * doc/chan.n: "Fix" the limitation on channel -eofchardgp2007-11-271-13/+18
| | | | | | | * 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 Sofer2007-11-262-3/+10
| | | | | | | | | * 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.
* Fix stack corruption in [dict append] compilerdkf2007-11-241-26/+31
|
* * generic/tclIORChan.c: Fixed a problem with reflectedandreas_kupries2007-11-241-10/+146
| | | | | | | | | | | | | | | | | | 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 indkf2007-11-231-4/+1
|
* * generic/tclVar.c (Tcl_ArrayObjCmd): handle the right data forhobbs2007-11-231-6/+11
| | | | * tests/var.test (var-14.2): [array names $var -glob $ptn]
* Turn the [string] command into a real compiled ensemble.dkf2007-11-234-325/+439
|
* Rebuild [dict] as a full compiled ensemble.dkf2007-11-224-609/+777
|
* Rewrote the [string] and [dict] implementations to be ready for conversiondkf2007-11-222-1142/+2028
| | | | to ensembles.
* Generalize the ensemble compiler further. Still doesn't precopile rewrites, ↵dkf2007-11-211-50/+138
| | | | | | but now handles many other things making the compiler at least useful.
* Factor out the core compiled-ensemble builder for simplicity.dkf2007-11-213-46/+93
|
* A little more errorCode goodnessdkf2007-11-211-4/+10
|
* Trim the fat from the sourcedkf2007-11-211-310/+280
|
* * generic/tclDictObj.c: Changed the underlying implementation of thedkf2007-11-204-185/+344
| | | | | | | | | 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.
* Correct usage of Tcl_WrongNumArgsdkf2007-11-201-3/+3
|
* * README: Bump version number to 8.5b3.dgp2007-11-191-3/+3
| | | | | | | | | | | | * 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:
* INST_EXIST_*: simplify result settingdas2007-11-191-26/+9
|
* improvements to commentsdkf2007-11-191-39/+43
|
* Reduce cast count.dkf2007-11-191-67/+51
|
* Reduce cast count.dkf2007-11-191-109/+102
|
* Simplifications (fewer casts, less manual bit twiddling)dkf2007-11-191-192/+191
|
* Reduce cast count.dkf2007-11-191-77/+72
|
* improvements to commentsdkf2007-11-192-7/+31
|
* eschew superfluous whitespacedkf2007-11-191-3/+3
|
* Reduce cast count.dkf2007-11-192-137/+136
|
* Reduce cast count.dkf2007-11-191-40/+40
|
* More minor cleanupdkf2007-11-187-404/+414
|
* Avoid using 'new' as an identifier.dkf2007-11-182-9/+9
|
* More minor cleanupdkf2007-11-183-471/+482
|
* Simplification+comments for ensemble dispatch enginedkf2007-11-181-128/+175
|
* General cleanliness improvements (reduced usage of casts, assume C89)dkf2007-11-181-139/+123
|
* Minor fixes (e.g. comment readability)dkf2007-11-182-268/+313
|
* * generic/tclExecute.c (TclExecuteByteCode:INST_EXIST_*): Fix readdas2007-11-171-20/+30
| | | | traces not firing on non-existent array elements. [Bug 1833522]
* Greatly improved ensemble compiler. This one now can handle any ensemble.dkf2007-11-165-167/+469
| | | | | It is usually not enabled though; only worth it when a subcommand is actually expected to undergo bytecode compilation.
* move TCL_DTRACE_INST_NEXT after async handlers checkdas2007-11-161-3/+3
|
* better line breaks in debug outputdgp2007-11-151-1/+1
|
* * generic/regc_nfa.c: Fixed infinite loop in the regexp compiler.dgp2007-11-151-0/+41
| | | | [Bug 1810038].
* * generic/regc_nfa.c: Corrected looping logic in fixempties() todgp2007-11-151-1/+2
| | | | avoid wasting time walking a list of dead states. [Bug 1832612]
* Must pass non-NULL interp to Tcl_SetEnsemble* functions.dkf2007-11-151-17/+11
|
* Add comments for clarity.dkf2007-11-152-171/+206
|
* typodkf2007-11-141-2/+2
|
* Compile [info exists] into bytecode. Includes new instructions to support it.dkf2007-11-147-14/+339
|
* Eliminate multi-char collating element code completely. Simplifies the codedkf2007-11-147-636/+127
| | | | | quite a bit. If people still want the full code, it will remain on the 8.4 branch. [Bug 1831425]
* Strip an _ANSI_ARGS_ usage.dkf2007-11-141-2/+2
|
* (TclCompileSwitchCmd): simplify TclReToGlob usage.hobbs2007-11-141-9/+6
|
* * generic/tclCompCmds.c (TclCompileRegexpCmd): clean up comments,hobbs2007-11-141-9/+12
| | | | only free dstring on OK from TclReToGlob.
* Comment/#ifdef out the multi-char collating element support code.dkf2007-11-144-39/+92
| | | | We never used or supported it. [Bug 1831425]
* Extend [switch] compiler to handle regular expressions as long as things are notdkf2007-11-131-71/+115
| | | | | too complex. Fix [regexp] compiler so that non-trivial literal regexps get fed to INST_REGEXP.
* Minor fixes (remove double blank lines, etc.)dkf2007-11-131-16/+18
|
* Fix a bug in disassembly of INST_START_CMD instructionsdkf2007-11-131-3/+4
|