summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* very minor style tweaksbug_3033307dkf2012-11-201-6/+9
|
* merge trunkdkf2012-11-194-43/+50
|\
| * [Bug 3588366]: Corrected implementation of bounds restriction for end-indexeddkf2012-11-191-3/+0
| | | | | | compiled [string range]. Thanks to Emiliano Gavilan for diagnosis and fix.
| * 3587651 Fix [info functions] and Tcl_ListMathFuncs().dgp2012-11-162-39/+49
| |\
| | * 3587651 Fix Tcl_ListMathFuncs() by turning it into a call to [info functions]dgp2012-11-161-31/+18
| | |
| | * 3587651 fix [info functions] (Re-implementation in Tcl)dgp2012-11-161-8/+31
| | |
| | * Release branch for Tcl 8.5.13.dgp2012-11-051-2/+2
| | |
| * | A few unneeded internal CONST/CONST86'sjan.nijtmans2012-11-161-1/+1
| | |
* | | Contributed patch from Andy Goth.dgp2012-11-151-26/+65
|/ /
* | Simplification: don't declare struct types that are never used.jan.nijtmans2012-11-157-9/+9
| |
* | IMPLEMENTATION OF TIP#416: New Options for 'load': -global and -lazyjan.nijtmans2012-11-152-3/+36
|\ \
| * \ merge trunkjan.nijtmans2012-11-122-2/+2
| |\ \
| * \ \ merge trunkjan.nijtmans2012-11-091-2/+0
| |\ \ \
| * | | | Finish the TIP #416 implementation as specified (#define's were still ↵jan.nijtmans2012-11-072-2/+10
| | | | | | | | | | | | | | | | | | | | missing). Added warning to "load" documentation. Added test case for using -global without specifying filename.
| * | | | merge trunkdkf2012-11-0617-426/+2756
| |\ \ \ \
| * | | | | syntax improvement: expect options before the filenamejan.nijtmans2012-10-241-15/+14
| | | | | | | | | | | | | | | | | | <p>start at documentation
| * | | | | experimental implementation of FRQ-3579001jan.nijtmans2012-10-241-5/+31
| | | | | |
* | | | | | * unix/tclUnixFCmd.c (TclUnixOpenTemporaryFile): [Bug 2933003]: Factordkf2012-11-143-8/+22
| |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | out all the code to do temporary file creation so that it is possible to make it correct in one place. Allow overriding of the back-stop default temporary file location at compile time by setting the TCL_TEMPORARY_FILE_DIRECTORY #def to a string containing the directory name (defaults to "/tmp" as that is the most common default).
* | | | | re-enable bcc-tailcall, after fixing an infinite loop in the ↵mig2012-11-102-2/+2
| |_|/ / |/| | | | | | | | | | | TCL_COMPILE_DEBUG mode
* | | | Remove files and references for long outdated Wise Installer.dgp2012-11-071-2/+0
| |/ / |/| |
* | | Disable bytecompile of [tailcall] until it gets some repair. As is, itdgp2012-11-051-1/+1
| | | | | | | | | hopelessly bogs down debug-enabled testing, and make many tests fail.
* | | Added bytecode compilation of many Tcl commands, merged from development branch.dkf2012-11-0515-420/+2723
|\ \ \
| * | | Added compilation of [array exists], [array set] and [array unset]. Fixed a ↵merge_to_trunkdkf2012-11-058-36/+451
| | | | | | | | | | | | | | | | whole bunch of issues with opcode issuing that were causing problems with stack depth calculations.
| * | | Added compilation of [string last] and improved the compilation of [string ↵dkf2012-11-039-214/+253
| | | | | | | | | | | | | | | | range]. This in turn enables compilation of [namespace qualifiers] and [namespace tail] (also done).
| * | | Added compilation of [info object isa object] (i.e., object verification).dkf2012-11-037-4/+56
| | | |
| * | | Added more TclOO introspection bytecodes ([info object class], [info object ↵dkf2012-11-027-54/+119
| | | | | | | | | | | | | | | | namespace]). Also moved TclOO-in-8.6 to using the main Tcl internal ensemble builder.
| * | | Added compilation of [tailcall]. Not a particularly efficient compilation ↵dkf2012-11-017-16/+117
| | | | | | | | | | | | | | | | though; it does not detect tailcall-of-self as a special case.
| * | | Added compilation of [dict create] and [dict merge].dkf2012-11-017-41/+250
| | | |
| * | | Added [dict exists] compilation; implementation is 95% shared with [dict get].dkf2012-10-307-17/+102
| | | |
| * | | Some corrections and performance tweaksdkf2012-10-301-46/+56
| | | |
| * | | Compilation of [string first] and [string range] (with constant indices).dkf2012-10-307-86/+306
| | | |
| * | | Added compilation of [regsub] (in the simplest, most restricted case).dkf2012-10-303-1/+178
| | | |
| * | | Added compilation of simplest practical case of [string map].dkf2012-10-297-13/+160
| | | |
| * | | Minor: correct a commentdkf2012-10-291-2/+3
| | | |
| * | | Compiler for some of the simpler cases of [format].dkf2012-10-293-1/+223
| | | |
| * | | merge trunkdkf2012-10-291-2/+3
| |\ \ \ | | |/ /
| * | | Merge corrected [yield] compilation. Many thanks to Miguel Sofer for help.dkf2012-10-297-22/+120
| |\ \ \
| | * | | fix INST_YIELD so that it worksdkf_bytecode_8_6_yieldmig2012-10-281-5/+21
| | | | |
| | * | | Working towards a BCCed [yield]; this doesn't work right now.dkf2012-10-267-22/+104
| | | | |
| * | | | Compilation of [info commands] in the case of a fully-qualified literal name.dkf2012-10-293-1/+62
| | | | |
| * | | | Added [self namespace] to bytecoded command set.dkf2012-10-281-5/+34
| |/ / /
| * | | Compile [namespace which -command]; big performance saving in some contexts.dkf2012-10-267-4/+71
| | | |
| * | | Added compilation of [namespace code] (except for gnarly edge cases).dkf2012-10-253-1/+54
| | | |
| * | | merge trunkdkf2012-10-245-61/+78
| |\ \ \
| * | | | yet another small introspector: [self]dkf2012-10-197-3/+71
| | | | |
| * | | | merge trunkdkf2012-10-191-3/+3
| |\ \ \ \
| * \ \ \ \ merge trunkdkf2012-10-1735-1261/+2770
| |\ \ \ \ \
| * \ \ \ \ \ merge trunkdkf2012-08-0471-2445/+3112
| |\ \ \ \ \ \
| * \ \ \ \ \ \ merge trunkdkf2012-04-2131-448/+473
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ merge trunkdkf2012-03-2814-524/+1734
| |\ \ \ \ \ \ \ \