Files in check-in fc4c109c84c44373 ordered by age
File ages are expressed relative to the check-in time of 2005-09-01 16:09:56.
| Age | Files | Check-in |
|---|---|---|
| current |
ChangeLog generic/tclInt.h generic/tclScan.c generic/tclStrToD.c |
[kennykb-numerics-branch] * generic/tclScan.c: Extended [scan] to accept the %lld, %llo, %llx, and %lli formats. Numeric scanning is now done via TclParseNumber calls. * generic/tclInt.h: Extended TclParseNumber to accept new flag * generic/tclStrToD.c: values TCL_PARSE_INTEGER_ONLY, TCL_PARSE_OCTAL_ONLY, and TCL_PARSE_HEXIDECIMAL_ONLY, to give caller more control over the parsing rules. (check-in: fc4c109c84, user: dgp, branch: kennykb-numerics-branch) |
| 1.9 days |
generic/tclObj.c |
[kennykb-numerics-branch] * generic/tclObj.c: Extended bignum support to include bignums so large they will not pack into a Tcl_Obj. When they outgrow Tcl's string rep length limits, a panic will result. (check-in: 4ef199b1b3, user: dgp, branch: kennykb-numerics-branch) |
| 2.0 days |
generic/tclBasic.c generic/tclTomMath.h unix/Makefile.in win/Makefile.in win/makefile.vc |
[kennykb-numerics-branch] * generic/tclTomMath.h: Added mp_sqrt to routines from * unix/Makefile.in: libtommath used by Tcl. * win/Makefile.in: * win/makefile.vc: * generic/tclBasic.c: Extended sqrt(.) so that range covers the entire double range, accepting as many bignums in the domain as that will allow. (check-in: 7e5e925b15, user: dgp, branch: kennykb-numerics-branch) |
| 2.9 days |
generic/tclCmdAH.c generic/tclCmdIL.c generic/tclCmdMZ.c generic/tclIO.c generic/tclLink.c generic/tclListObj.c generic/tclNamesp.c generic/tclThreadTest.c tests/expr.test |
[kennykb-numerics-branch] Merge updates from HEAD. (check-in: c74bd61cc0, user: dgp, branch: kennykb-numerics-branch) |
| 6.8 days |
generic/tclExecute.c |
[kennykb-numerics-branch] * generic/tclExecute.c: Bug fix. INST_RSHIFT: shift of negative values produced incorrect results. (check-in: 0e9fcc9b56, user: dgp, branch: kennykb-numerics-branch) |
| 7.0 days |
doc/SetChanErr.3 generic/tcl.decls generic/tclDecls.h generic/tclEvent.c generic/tclIO.h generic/tclIOCmd.c generic/tclIORChan.c generic/tclStubInit.c generic/tclTest.c library/init.tcl tests/binary.test tests/chan.test tests/clock.test tests/io.test tests/ioCmd.test unix/configure.in unix/tclConfig.h.in win/configure win/configure.in |
[kennykb-numerics-branch] Merge updates from HEAD * generic/tclExecute.c: Bug fix. INST_*SHIFT* opcodes stack management. [expr 0<<6] should be 0, not 6. (check-in: 6d651867f9, user: dgp, branch: kennykb-numerics-branch) |
| 8.9 days |
generic/tclParseExpr.c tests/scan.test |
TclParseNumber enhanced for [scan ... %f], plus better test coverage (check-in: 43741d958a, user: kennykb, branch: kennykb-numerics-branch) |
| 9.4 days |
generic/tclInt.decls generic/tclIntDecls.h generic/tclUtil.c |
[kennykb_numerics_branch] * generic/tclBasic.c: Re-used the guts of int(.) and wide(.) math functions to perform conversions in OldMathFuncProc. * generic/tclBasic.c: Support for ACCEPT_NAN. * generic/tclExecute.c: * generic/tclInt.decls: Restored TclExprFloatError to internal stubs * generic/tclBasic.c: table, and moved definition back to tclExecute.c * generic/tclExecute.c: from tclBasic.c to handle #undef ACCEPT_NAN. * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclInt.h: New internal macros TclIsNaN and TclIsInfinite * generic/tclBasic.c: replace the IS_NAN and IS_INF macros scattered * generic/tclExecute.c: here and there. * generic/tclObj.c: * generic/tclStrToD.c: * generic/tclUtil.c: (check-in: 249580da47, user: dgp, branch: kennykb-numerics-branch) |
| 10.0 days |
generic/tclTestObj.c |
[kennykb_numerics_branch] * generic/tclTestObj.c: Disabled unused [testconvertobj] command. (check-in: 42f35b9b3b, user: dgp, branch: kennykb-numerics-branch) |
| 10.1 days |
tests/format.test |
[kennykb_numerics_branch] * tests/expr.test: Corrected the wideIs64bit constraint. * tests/format.test: * tests/scan.test: (check-in: 24dbc7d4fd, user: dgp, branch: kennykb-numerics-branch) |
| 10.5 days |
generic/tclCompExpr.c |
[kennykb_numerics_branch] * generic/tclInt.h: Moved TclParseInteger to tclUtil.c * generic/tclParseExpr.c: and made it static. * generic/tclUtil.c: * generic/tclInt.decls: Moved TclExprFloatError to tclBasic.c and * generic/tclBasic.c: made it static. * generic/tclExecute.c: * generitc/tclIntDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclExecute.c: errno, IS_NAN, IS_INF, LLD no longer called in this file; dropped/disabled support for them. * generic/tclCompExpr.c: errno no longer used in these files; * generic/tclParseExpr.c: dropped support "hack" for it. * generic/tclStrToD.c: Disabled out of date support "hack" for errno. * generic/tclBasic.c: Eliminated VerifyExprObjType. Initialize errno to zero in OldMathFuncProc. (check-in: 4348fa75d0, user: dgp, branch: kennykb-numerics-branch) |
| 12.8 days |
generic/tclProc.c |
[kennykb_numerics_branch] * generic/tclBasic.c: Updated OldMathFuncProc and ExprAbsFunc to do less invasion into numeric Tcl_Obj internals. Made ExprDoubleFunc, ExprIntFunc, ExprWideFunc, and ExprRoundFunc bignum-aware. Revised ExprSrandFunc error message. * generic/tclProc.c: Wrapped a few tclWideIntType uses in * generic/tclCmdMZ.c: #ifndef NO_WIDE_TYPE. * generic/tclInt.h: #define'd NO_WIDE_TYPE. (check-in: e5101a6820, user: dgp, branch: kennykb-numerics-branch) |
| 13.5 days |
generic/tclVar.c |
[kennykb_numerics_branch] * generic/tclVar.c: Replaced TclPtrIncrVar and TclPtrIncrWideVar * generic/tclInt.h: with TclPtrIncrObjVar and replaced TclIncrVar2 * generic/tclInt.decls: and TclIncrWideVar2 with TclIncrObjVar2. New routines call on TclIncrObj to do the work. * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclCmdIL.c: Rework Tcl_IncrObjCmd and the INST_*INCR* * generic/tclExecute.c: opcodes to use the new routines. (check-in: df3782bcce, user: dgp, branch: kennykb-numerics-branch) |
| 13.8 days |
tests/dict.test |
[kennykb_numerics_branch] * generic/tclExecute.c: Fixed string rep invalidation bug in * tests/dict.test (dict-11.17): INST_DICT_INCR_IMM rewrite. (check-in: c2d95f0d3f, user: dgp, branch: kennykb-numerics-branch) |
| 13.9 days |
generic/tclDictObj.c |
[kennykb_numerics_branch] * generic/tclDictObj.c: DictIncrCmd rewrite to use TclIncrObj. * generic/tclInt.h: TclIncrObj static -> internal * generic/tclExecute.c: (check-in: 09790424d3, user: dgp, branch: kennykb-numerics-branch) |
| 14.6 days |
tests/expr-old.test |
added some constraints to the new tests (check-in: 2ed44afc2c, user: dgp, branch: kennykb-numerics-branch) |
| 15.5 days |
tests/string.test |
[kennykb_numerics_branch] * generic/tclExecute.c: Made bit shifting opcodes and INST_MOD bignum-aware. * tests/scan.test: Making << bignum-aware means that repeated * tests/string.test: left shifting cannot turn a positive into a negative. Revised [int_range] and [largest_int] utility commands in the test suite that relied on that happening. Without revision they became infinite loops. (check-in: c4747cae22, user: dgp, branch: kennykb-numerics-branch) |
| 16.5 days |
generic/tclStringObj.c |
* generic/tclExecute.c: More revisions to IllegalExprOperandType. Merged INST_BITNOT with INST_UMINUS and make it bignum-aware according to the rule: ~a = -a - 1. Disabled unused code and noted more TODOs. (check-in: df1d00d8c1, user: dgp, branch: kennykb-numerics-branch) |
| 16.8 days |
generic/tclCompCmds.c |
* generic/tclInt.decls: Deleted TclLooksLikeInt() and all callers. * generic/tclUtil.c: * generic/tclCompCmds.c: * generic/tclBasic.c: Rewrite of VerifyExprObjType(). * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: (check-in: 785947b9dc, user: dgp, branch: kennykb-numerics-branch) |
| 16.9 days |
doc/AddErrInfo.3 generic/tclClock.c generic/tclPathObj.c generic/tclThread.c generic/tclThreadStorage.c library/clock.tcl tests/compExpr-old.test tests/get.test unix/configure unix/tcl.m4 unix/tclUnixInit.c unix/tclUnixThrd.c win/makefile.bc win/rules.vc win/tcl.m4 win/tclWinFCmd.c win/tclWinThrd.c |
merge updates from HEAD (check-in: b456e92317, user: dgp, branch: kennykb-numerics-branch) |
| 21.9 days |
generic/tclTomMathInterface.c generic/tommath.h |
[kennykb_numerics_branch] * generic/tclTomMath.h: Added mp_shrink, mp_to_unsigned_bin, * unix/Makefile.in: mp_to_unsigned_bin_n, and mp_unsigned_bin_size * win/Makefile.in: to routines from libtommath used by Tcl. * win/makefile.vc: * generic/tommath.h: make gentommath_h * generic/tclObj.c: Substantial rewrite to make all number parsing flow through TclParseNumber(). Also established the NO_WIDE_TYPE and BIGNUM_AUTO_NARROW #ifdef's to help track the assumptions of different portions of the code. * generic/tclInt.h: Added NO_WIDE_TYPE #ifdefs (check-in: 57a68b7c98, user: dgp, branch: kennykb-numerics-branch) |
| 29.9 days |
generic/tclAlloc.c generic/tclAsync.c generic/tclBinary.c generic/tclCkalloc.c generic/tclCompile.c generic/tclCompile.h generic/tclConfig.c generic/tclEncoding.c generic/tclEnv.c generic/tclFCmd.c generic/tclFileName.c generic/tclGet.c generic/tclHash.c generic/tclIOGT.c generic/tclIOSock.c generic/tclIOUtil.c generic/tclIndexObj.c generic/tclInterp.c generic/tclLiteral.c generic/tclLoad.c generic/tclMain.c generic/tclNotify.c generic/tclPanic.c generic/tclParse.c generic/tclPipe.c generic/tclPkg.c generic/tclPkgConfig.c generic/tclPosixStr.c generic/tclPreserve.c generic/tclRegexp.c generic/tclResolve.c generic/tclResult.c generic/tclThreadAlloc.c generic/tclThreadJoin.c generic/tclTimer.c generic/tclTrace.c generic/tclUtf.c library/auto.tcl library/history.tcl library/package.tcl library/safe.tcl library/word.tcl macosx/tclMacOSXBundle.c macosx/tclMacOSXFCmd.c macosx/tclMacOSXNotify.c tests/error.test tests/exec.test tests/fileName.test tests/info.test tests/listObj.test tests/load.test tests/obj.test tests/parseExpr.test tests/socket.test tests/trace.test unix/tclAppInit.c unix/tclLoadAix.c unix/tclLoadDl.c unix/tclLoadDld.c unix/tclLoadDyld.c unix/tclLoadNext.c unix/tclLoadOSF.c unix/tclLoadShl.c unix/tclUnixChan.c unix/tclUnixEvent.c unix/tclUnixFCmd.c unix/tclUnixFile.c unix/tclUnixNotfy.c unix/tclUnixPipe.c unix/tclUnixSock.c unix/tclUnixTime.c unix/tclXtNotify.c win/README win/tclAppInit.c win/tclWin32Dll.c win/tclWinChan.c win/tclWinConsole.c win/tclWinDde.c win/tclWinFile.c win/tclWinInit.c win/tclWinLoad.c win/tclWinNotify.c win/tclWinPipe.c win/tclWinReg.c win/tclWinSerial.c win/tclWinSock.c win/tclWinTime.c |
merge updates from HEAD (check-in: 10feab7c07, user: dgp, branch: kennykb-numerics-branch) |
| 50.8 days |
README changes doc/CrtChannel.3 doc/OpenFileChnl.3 doc/chan.n doc/expr.n doc/glob.n doc/info.n doc/lsearch.n doc/lsort.n doc/mathfunc.n doc/namespace.n doc/string.n doc/switch.n generic/tcl.h library/parray.tcl macosx/Makefile macosx/README macosx/Tcl-Info.plist.in tests/cmdIL.test tests/env.test tests/for.test tests/init.test tests/interp.test tests/lsearch.test tests/namespace.test tests/result.test tests/switch.test tools/tcl.wse.in tools/tcltk-man2html.tcl unix/tcl.spec win/README.binary win/tclWinPort.h |
merged changes from HEAD (check-in: 5316ea45e0, user: kennykb, branch: kennykb-numerics-branch) |
| 103.0 days |
doc/BoolObj.3 doc/load.n generic/tclIntPlatDecls.h tests/unixNotfy.test tests/util.test unix/tclUnixPort.h |
Resynchronized with HEAD (check-in: 96be07d7c8, user: kennykb, branch: kennykb-numerics-branch) |
| 113.0 days |
libtommath/tommath_superclass.h |
Synchronized with HEAD (check-in: 6ea4a2ae77, user: kennykb, branch: kennykb-numerics-branch) |
| 118.9 days |
compat/string.h doc/DString.3 doc/Environment.3 doc/Eval.3 doc/ExprLong.3 doc/ExprLongObj.3 doc/GetInt.3 doc/GetOpnFl.3 doc/ParseCmd.3 doc/RegExp.3 doc/SetResult.3 doc/StrMatch.3 doc/Utf.3 doc/lindex.n doc/linsert.n doc/lrange.n doc/lreplace.n doc/lset.n doc/open.n doc/regexp.n doc/regsub.n tests/appendComp.test tests/compile.test tests/lindex.test tests/linsert.test tests/lrange.test tests/lreplace.test tests/lset.test tests/main.test tests/regexp.test tests/regexpComp.test tests/stringComp.test tests/unixInit.test |
Merged with HEAD (check-in: b77c9a87c6, user: kennykb, branch: kennykb-numerics-branch) |
| 128.8 days |
compat/strstr.c doc/fconfigure.n doc/fcopy.n library/tclIndex library/tm.tcl library/tzdata/America/Boise library/tzdata/America/Chicago library/tzdata/America/Denver library/tzdata/America/Indiana/Knox library/tzdata/America/Indiana/Marengo library/tzdata/America/Indiana/Vevay library/tzdata/America/Indianapolis library/tzdata/America/Kentucky/Monticello library/tzdata/America/Los_Angeles library/tzdata/America/Louisville library/tzdata/America/Managua library/tzdata/America/Montevideo library/tzdata/America/New_York library/tzdata/America/North_Dakota/Center library/tzdata/America/Phoenix library/tzdata/America/Port-au-Prince library/tzdata/Asia/Almaty library/tzdata/Asia/Aqtau library/tzdata/Asia/Aqtobe library/tzdata/Asia/Baku library/tzdata/Asia/Jerusalem library/tzdata/Asia/Oral library/tzdata/Asia/Qyzylorda library/tzdata/Asia/Tehran library/tzdata/Indian/Chagos library/tzdata/Indian/Cocos libtommath/bn.pdf libtommath/tombc/grammar.txt libtommath/tommath.pdf tests/encoding.test tests/iogt.test tools/tclZIC.tcl |
Merged with HEAD. (check-in: fcce6158ac, user: kennykb, branch: kennykb-numerics-branch) |
| 128.8 days |
doc/CrtMathFnc.3 |
Revised documentation for TIP 232 (check-in: e6c2f423c4, user: kennykb, branch: kennykb-numerics-branch) |
| 143.7 days |
libtommath/bn.tex libtommath/bn_fast_mp_invmod.c libtommath/bn_fast_mp_montgomery_reduce.c libtommath/bn_fast_s_mp_mul_digs.c libtommath/bn_fast_s_mp_mul_high_digs.c libtommath/bn_fast_s_mp_sqr.c libtommath/bn_mp_exptmod.c libtommath/bn_mp_exptmod_fast.c libtommath/bn_mp_exteuclid.c libtommath/bn_mp_invmod_slow.c libtommath/bn_mp_montgomery_calc_normalization.c libtommath/bn_mp_mul_d.c libtommath/bn_mp_neg.c libtommath/bn_mp_prime_random_ex.c libtommath/bn_mp_radix_size.c libtommath/bn_mp_rand.c libtommath/bn_mp_reduce.c libtommath/bn_mp_reduce_2k.c libtommath/bn_mp_reduce_2k_l.c libtommath/bn_mp_reduce_2k_setup.c libtommath/bn_mp_reduce_2k_setup_l.c libtommath/bn_mp_reduce_is_2k.c libtommath/bn_mp_reduce_is_2k_l.c libtommath/bn_mp_to_signed_bin.c libtommath/bn_mp_to_signed_bin_n.c libtommath/bn_mp_to_unsigned_bin.c libtommath/bn_mp_to_unsigned_bin_n.c libtommath/bn_mp_toom_mul.c libtommath/bn_mp_unsigned_bin_size.c libtommath/bn_mp_xor.c libtommath/bn_mp_zero.c libtommath/bn_s_mp_exptmod.c libtommath/bn_s_mp_mul_digs.c libtommath/bn_s_mp_sqr.c libtommath/bncore.c libtommath/callgraph.txt libtommath/changes.txt libtommath/demo/demo.c libtommath/demo/timing.c libtommath/dep.pl libtommath/etc/timer.asm libtommath/etc/tune.c libtommath/logs/README libtommath/logs/add.log libtommath/logs/addsub.png libtommath/logs/expt.log libtommath/logs/expt.png libtommath/logs/expt_2k.log libtommath/logs/expt_2kl.log libtommath/logs/expt_dr.log libtommath/logs/invmod.png libtommath/logs/mult.log libtommath/logs/mult.png libtommath/logs/mult_kara.log libtommath/logs/sqr.log libtommath/logs/sqr_kara.log libtommath/logs/sub.log libtommath/makefile libtommath/makefile.bcc libtommath/makefile.cygwin_dll libtommath/makefile.icc libtommath/makefile.msvc libtommath/makefile.shared libtommath/pics/expt_state.tif libtommath/pics/primality.tif libtommath/poster.pdf libtommath/pre_gen/mpi.c libtommath/tommath.h libtommath/tommath.src libtommath/tommath.tex libtommath/tommath_class.h |
Updated to libtommath 0.35 (check-in: f12cf81bea, user: kennykb, branch: kennykb-numerics-branch) |
| 143.7 days |
doc/Backslash.3 doc/Concat.3 doc/CrtCommand.3 doc/CrtFileHdlr.3 doc/CrtObjCmd.3 doc/FileSystem.3 doc/GetIndex.3 doc/IntObj.3 doc/Interp.3 doc/LinkVar.3 doc/ListObj.3 doc/Notifier.3 doc/Object.3 doc/OpenTcp.3 doc/PrintDbl.3 doc/SaveResult.3 doc/StringObj.3 doc/TraceVar.3 doc/array.n doc/close.n doc/fblocked.n doc/file.n doc/fileevent.n doc/flush.n doc/format.n doc/gets.n doc/interp.n doc/lappend.n doc/llength.n doc/msgcat.n doc/pkgMkIndex.n doc/puts.n doc/re_syntax.n doc/read.n doc/registry.n doc/scan.n doc/seek.n doc/subst.n doc/tclvars.n doc/tell.n doc/unload.n doc/unset.n doc/upvar.n tests/basic.test tests/fileSystem.test tests/parse.test tests/winFCmd.test tools/man2html2.tcl win/.cvsignore |
merged with HEAD and fixed 1180368 (check-in: 7bc9ca0285, user: kennykb, branch: kennykb-numerics-branch) |
| 169.9 days |
tests/compExpr.test |
TIP#232 initial implementation (check-in: 3c9f384d3a, user: kennykb, branch: kennykb-numerics-branch) |
| 176.0 days |
doc/CrtSlave.3 library/tcltest/pkgIndex.tcl library/tcltest/tcltest.tcl tests/tcltest.test |
Merged with HEAD (check-in: 07ab486bc3, user: kennykb, branch: kennykb-numerics-branch) |
| 182.8 days |
doc/Thread.3 doc/binary.n doc/variable.n |
Developer's checkpoint, see ChangeLog for details (check-in: f8f444ebda, user: kennykb, branch: kennykb-numerics-branch) |
| 211.0 days |
doc/GetTime.3 |
sync with head, add TclStrToD (TIP #132) (check-in: 82ce6a0c40, user: kennykb, branch: kennykb-numerics-branch) |
| 223.8 days |
libtommath/bn_mp_read_radix.c |
local patches to make string conversions work (check-in: e5cbb8c962, user: kennykb, branch: kennykb-numerics-branch) |
| 223.9 days |
compat/strtoll.c compat/strtoull.c doc/Ensemble.3 generic/tclPort.h tools/fix_tommath_h.tcl |
Development checkpoint, see ChangeLog for details (check-in: 14457d7982, user: kennykb, branch: kennykb-numerics-branch) |
| 224.1 days |
library/http/http.tcl library/http/pkgIndex.tcl library/tzdata/America/Asuncion library/tzdata/America/Rosario library/tzdata/Brazil/Acre library/tzdata/GMT+0 library/tzdata/GMT-0 library/tzdata/GMT0 library/tzdata/Greenwich library/tzdata/Navajo library/tzdata/Universal library/tzdata/Zulu tests/fCmd.test tests/winDde.test unix/dltest/Makefile.in unix/tclConfig.sh.in |
reverting to HEAD in preparation for changing from reworked 'mpexpr' to 'libtommath' (check-in: 8f72684eeb, user: kennykb, branch: kennykb-numerics-branch) |
| 245.7 days |
generic/tclDate.c generic/tclGetDate.y |
merge from HEAD (check-in: 0a6d56f9eb, user: kennykb, branch: kennykb-numerics-branch) |
| 261.8 days |
doc/Async.3 doc/clock.n |
synch with kennykb-numerics-branch-20041213 (check-in: 34c9e99c86, user: kennykb, branch: kennykb-numerics-branch) |
| 266.9 days |
doc/error.n doc/foreach.n tests/msgcat.test tests/safe.test |
merged with kennykb-numerics-branch-20041208 (check-in: ab2eb12a79, user: kennykb, branch: kennykb-numerics-branch) |
| 273.7 days |
unix/tclUnixTest.c |
* generic/tclUtil.c: Updated Tcl_GetNameOfExecutable() to * generic/tclEncoding.c: make use of a ProcessGlobalValue for * generic/tclEvent.c: storing the executable name. Added internal routines Tcl(Get|Set)ObjNameOfExecutable() to access that storage in Tcl_Obj, rather than string format. * unix/tclUnixFile.c: Rewrote TclpFindExecutable() to use * win/tclWinFile.c: TclSetObjNameOfExecutable to store the executable name it computes. * generic/tclInt.h: Added internal stub entries for * generic/tclInt.decls: TclpFindExecutable and Tcl(Get|Set)ObjNameOfExecutable. * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclCmdIL.c: Retrieve executable name in Tcl_Obj form * win/tclWinPipe.c: instead of string form. * unix/tclUnixTest.c: Update [testfindexecutable] command to use new internal interfaces. (check-in: 353036774e, user: dgp, branch: trunk) |
| 280.0 days |
tests/indexObj.test |
Fix [Bug 1066837] without reopening other bugs... What a horrid hack! :^/ (check-in: 457eb30a98, user: dkf, branch: trunk) |
| 280.2 days |
doc/dde.n |
Assorted cleanup and doc-fixes for the dde package. (check-in: 46a09eeaa0, user: dkf, branch: trunk) |
| 281.2 days |
tools/man2html.tcl tools/man2html1.tcl |
Fix various problems with man2html converter reported by AKu Also updated to use [package require Tcl 8.4] (check-in: a2fcb23a54, user: dkf, branch: trunk) |
| 285.7 days |
doc/BackgdErr.3 doc/after.n doc/bgerror.n doc/exec.n doc/exit.n doc/return.n doc/update.n |
* doc/AddErrInfo.3: Docs for Tcl_(Get|Set)ReturnOptions. [TIP 227] * doc/AddErrInfo.3: * doc/Async.3: Documentation updates to replace references * doc/BackgdErr.3: to global variable ::errorInfo and ::errorCode * doc/SaveResult.3: and to the ::bgerror command with references * doc/after.n: to their preferred replacements, the * doc/bgerror.n: -errorinfo and -errorcode return options, * doc/error.n: the Tcl_*InterpState routines, and the * doc/exec.n: [interp bgerror] command. * doc/exit.n: * doc/fileevent.n: * doc/interp.n: * doc/return.n: * doc/tclvars.n: * doc/update.n: (check-in: 347e3ef551, user: dgp, branch: trunk) |
| 286.2 days |
unix/installManPage |
Classic sed doesn't support | in REs. (check-in: 89ba81e830, user: rmax, branch: trunk) |
| 286.9 days |
tests/timer.test |
* tests/basic.test: Updated functional (not testing) uses of * tests/io.test: [bgerror] to make use of [interp bgerror]. * tests/socket.test: * tests/timer.test: * generic/tclInterp.c: Corrected [interp bgerror] error message. (check-in: db27a439b1, user: dgp, branch: trunk) |
| 293.3 days |
doc/Limit.3 doc/dict.n doc/tm.n |
* doc/CrtChannel.3: * doc/Interp.3: * doc/Limit.3: * doc/binary.n: * doc/dict.n: * doc/tm.n: * doc/upvar.n: fixed *roff errors uncovered by running 'make html'. * tools/tcltk-man2html.tcl: added faked support for bullet point lists, i.e. *nroff ".IP \(bu" syntax. (check-in: 70b61d2ad8, user: das, branch: trunk) |
| 296.3 days |
doc/catch.n |
Minor formatting changes and clarifications (check-in: 0aedba75d0, user: dkf, branch: trunk) |
| 296.9 days |
tests/winFile.test |
* tests/winFile.test: Attempted and untested fix for 1062491 (check-in: 58c1ea03c7, user: davygrvy, branch: trunk) |
| 300.0 days |
tests/reg.test |
Major simplification of reg.test to de-Spencer it somewhat. It's still cryptic, but perhaps not quite so bad now. :^) (check-in: 33836ef30c, user: dkf, branch: trunk) |
| 300.3 days |
tests/tm.test |
Add [file normalize] so expected paths come out right on Windows. [Bug 1053568] (check-in: a428ffb800, user: dkf, branch: trunk) |
| 301.9 days |
generic/tclPlatDecls.h |
* generic/tcl.h: Moved the preprocessor logic * generic/tclDecls.h: from tclInt.h of setting the * generic/tclInt.h: TCL_STORAGE_CLASS macro to the * generic/tclIntDecls.h: tcl*Decls.h files now that no * generic/tclIntPlatDecls.h: use of EXTERN is left in tclInt.h. * generic/tclPlatDecls.h: Proto for Tcl_Main moved in tcl.h * win/tclWinPort.h: to prior the inclusion of the Stubs headers as they are now resetting TCL_STORAGE_CLASS. Removed extrainious reset from tclWinPort.h. [Patch 1055668] (check-in: 89bb140d4a, user: davygrvy, branch: trunk) |
| 302.0 days |
tests/incr-old.test tests/incr.test tests/set.test |
* generic/tclTrace.c (TclCallVarTraces): Improved ability to debug * tests/incr-old.test (incr-old-2.6): errors during variable * tests/incr.test (incr-{1,2}.28): traces by preserving the * tests/set.test (set-{2,4}.4): -errorinfo data. * tests/trace.test (trace-33.1): [Bug 527164] (check-in: ae1a4b3855, user: dgp, branch: trunk) |
| 302.6 days |
generic/tclRegexp.h |
* generic/tclRegexp.h: manipulating TCL_STORAGE_CLASS unnecessary. (check-in: 6e7d80fe4b, user: davygrvy, branch: trunk) |
| 302.6 days |
generic/tclFileSystem.h |
* generic/tclFileSystem.h: Added use of MODULE_SCOPE on protos. (check-in: f7258bdf3e, user: davygrvy, branch: trunk) |
| 302.7 days |
win/tclWinInt.h |
* win/tclWinInt.h: * win/tclWinPort.h: exported internals dropped by a count of 14. (check-in: db6ba42d9e, user: davygrvy, branch: trunk) |
| 303.0 days |
library/tzdata/America/Cuiaba library/tzdata/America/Havana |
updates to Havana and Cuiaba time zones (check-in: 2a5075ede2, user: kennykb, branch: trunk) |
| 304.0 days |
tests/cmdAH.test |
Second part of fix for Bug 926106 (check-in: 824c70e9e5, user: kennykb, branch: trunk) |
| 306.6 days |
tests/all.tcl |
* library/tcltest/tcltest.tcl: Correct reaction to errors in the obsolete processCmdLineArgsHook. [Bug 1055673] * library/tcltest/pkgIndex.tcl: Bump to tcltest 2.2.7 * unix/Makefile.in: * tests/all.tcl: Update to use [tcltest::configure]. (check-in: b8cfda2859, user: dgp, branch: trunk) |
| 307.0 days |
tests/config.test tests/proc-old.test |
Allow ensembles to rewrite their subcommands' error messages to be more relevant to users. [Patch 1056864] Also patches to core to take advantage of this Also other general cleaning up of Tcl_WrongNumArgs usage (check-in: 7162a54053, user: dkf, branch: trunk) |
| 308.0 days |
tests/execute.test |
fix for execution stack corruption [Bug 1055676]. Credit dgp for detective work and fix. (check-in: f1a5745b04, user: msofer, branch: trunk) |
| 308.8 days |
tests/registry.test |
* tests/registry.test: Fixed test files to load the correct * tests/winDde.test: registry and dde packages by using the info * win/Makefile.in: from makefiles to tell tcltest where to load * win/makefile.vc: them from. This avoids grabbing the wrong package from $auto_path which might be the install point rather than the dev location. Kudos to Jennifer Hom for adding -load and -loadfile to the tcltest package. [Bug 926088] (check-in: b7e5a90f69, user: davygrvy, branch: trunk) |
| 309.1 days |
doc/tcltest.n doc/time.n doc/trace.n doc/uplevel.n doc/vwait.n doc/while.n |
Yet more small fixes (check-in: bc5a431cb6, user: dkf, branch: trunk) |
| 309.1 days |
doc/encoding.n doc/package.n doc/pid.n doc/proc.n doc/pwd.n doc/rename.n doc/set.n doc/socket.n doc/source.n doc/split.n |
More minor doc fixes (check-in: 83ab806184, user: dkf, branch: trunk) |
| 309.1 days |
doc/for.n doc/global.n doc/http.n doc/if.n doc/incr.n doc/join.n doc/list.n |
More minor doc fixes (check-in: d75edd0e24, user: dkf, branch: trunk) |
| 309.3 days |
doc/append.n doc/break.n doc/cd.n doc/concat.n doc/continue.n doc/eof.n doc/eval.n |
Many minor doc fixes (check-in: 77001dc18a, user: dkf, branch: trunk) |
| 309.8 days |
tests/subst.test |
* generic/tclParse.c (Tcl_SubstObj): Fix for failed subst-12.3 test. * tests/subst.test (subst-12.3-5): More tests for Bug 1036649. (check-in: 86cdd8b62d, user: dgp, branch: trunk) |
| 310.8 days |
tests/thread.test |
* generic/tclExecute.c (IllegalExprOperandType,TclExecuteByteCode): Removed several DECACHE_INFO/CACHE_INFO pairs that are no longer needed for protection because routines like Tcl_SetErrorCode() and Tcl_AddErrorInfo() can no longer re-enter bytecode execution. * generic/tclResult.c (TclProcessReturn): Bug fix. Be sure that a missing -errorinfo option when code == TCL_ERROR causes the errorInfo field to get reset. * tests/thread.test (thread-4.4): Test depended on a ::errorInfo value initialized to "". Added code to test to setup that requirement. (check-in: 8d245f4a56, user: dgp, branch: trunk) |
| 323.9 days |
library/tzdata/America/Argentina/Mendoza library/tzdata/America/Argentina/San_Juan library/tzdata/America/Campo_Grande library/tzdata/America/Sao_Paulo |
synchronized to Olson's tzdata2004e (check-in: 5818ca2c48, user: kennykb, branch: trunk) |
| 329.0 days |
doc/Hash.3 doc/SetVar.3 |
Reduce the number of warnings given by nroff... (check-in: f1d921f3d0, user: dkf, branch: trunk) |
| 329.0 days |
doc/CrtTrace.3 doc/Init.3 doc/SourceRCFile.3 |
Fix the argument list widths properly... (check-in: 21d0f484be, user: dkf, branch: trunk) |
| 329.0 days |
doc/AssocData.3 doc/ByteArrObj.3 doc/CmdCmplt.3 doc/DictObj.3 doc/DumpActiveMemory.3 doc/Encoding.3 doc/FindExec.3 doc/GetHostName.3 doc/InitStubs.3 doc/Namespace.3 doc/ObjectType.3 doc/Panic.3 doc/PkgRequire.3 doc/RecordEval.3 doc/RegConfig.3 doc/SetErrno.3 doc/Signal.3 doc/SplitList.3 doc/SplitPath.3 doc/StaticPkg.3 doc/TraceCmd.3 doc/Translate.3 doc/UpVar.3 doc/WrongNumArgs.3 |
Convert CONST to const, VOID to void so we document how we want the API used. (check-in: 94bf67038b, user: dkf, branch: trunk) |
| 329.1 days |
doc/Access.3 doc/AllowExc.3 doc/CallDel.3 doc/ChnlStack.3 doc/CrtChnlHdlr.3 doc/CrtCloseHdlr.3 doc/DetachPids.3 doc/GetCwd.3 doc/GetStdChan.3 doc/GetVersion.3 doc/Sleep.3 doc/SubstObj.3 doc/Tcl_Main.3 doc/UniCharIsAlpha.3 doc/man.macros |
Update the .AS macro definition and take advantage of it's new-found power. (check-in: dcba7c799d, user: dkf, branch: trunk) |
| 329.3 days |
ChangeLog.2003 |
Split off ChangeLog entries for 2003 (check-in: fe19fa6703, user: dkf, branch: trunk) |
| 330.0 days |
library/reg/pkgIndex.tcl |
* generic/tclBasic.c: * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclDictObj.c: * generic/tclEncoding.c: * generic/tclExecute.c: * generic/tclFCmd.c: * generic/tclHistory.c: * generic/tclIndexObj.c: * generic/tclInterp.c: * generic/tclIO.c: * generic/tclIOCmd.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclPkg.c: * generic/tclResult.c: * generic/tclScan.c: * generic/tclTimer.c: * generic/tclTrace.c: * generic/tclUtil.c: * generic/tclVar.c: * unix/tclUnixFCmd.c: * unix/tclUnixPipe.c: * win/tclWinDde.c: * win/tclWinFCmd.c: * win/tclWinPipe.c: * win/tclWinReg.c: It is a poor practice to directly set or append to the value of the objResult of an interp, because that value might be shared, and in that circumstance a Tcl_Panic() will be the result. Searched for example of this practice and replaced with safer alternatives, often using the Tcl_AppendResult() routine that dkf just rehabilitated. * library/dde/pkgIndex.tcl: Bump to dde 1.3.1 * library/reg/pkgIndex.tcl: Bump to registry 1.1.5 (check-in: be0a51bf83, user: dgp, branch: trunk) |
| 330.0 days |
library/dde/pkgIndex.tcl |
* generic/tclBasic.c: * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclDictObj.c: * generic/tclEncoding.c: * generic/tclExecute.c: * generic/tclFCmd.c: * generic/tclHistory.c: * generic/tclIndexObj.c: * generic/tclInterp.c: * generic/tclIO.c: * generic/tclIOCmd.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclPkg.c: * generic/tclResult.c: * generic/tclScan.c: * generic/tclTimer.c: * generic/tclTrace.c: * generic/tclUtil.c: * generic/tclVar.c: * unix/tclUnixFCmd.c: * unix/tclUnixPipe.c: * win/tclWinDde.c: * win/tclWinFCmd.c: * win/tclWinPipe.c: It is a poor practice to directly set or append to the value of the objResult of an interp, because that value might be shared, and in that circumstance a Tcl_Panic() will be the result. Searched for example of this practice and replaced with safer alternatives, often using the Tcl_AppendResult() routine that dkf just rehabilitated. * library/dde/pkgIndex.tcl: Bump to dde 1.3.1 (check-in: 49653405fd, user: dgp, branch: trunk) |
| 330.0 days |
generic/tclHistory.c |
* generic/tclBasic.c: * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclDictObj.c: * generic/tclEncoding.c: * generic/tclExecute.c: * generic/tclFCmd.c: * generic/tclHistory.c: * generic/tclIndexObj.c: * generic/tclInterp.c: It is a poor practice to directly set or append to the value of the objResult of an interp, because that value might be shared, and in that circumstance a Tcl_Panic() will be the result. Searched for example of this practice and replaced with safer alternatives, often using the Tcl_AppendResult() routine that dkf just rehabilitated. (check-in: ee7c709e65, user: dgp, branch: trunk) |
| 335.7 days |
tests/var.test |
* generic/tclBasic.c (Tcl_AddObjErrorInfo): More re-organization * generic/tclCmdAH.c (Tcl_ErrorObjCmd): of the management of * generic/tclCmdMZ.c (TclProcessReturn): the errorCode value. * tests/error.test (error-6.4-9): * generic/tclNamespace.c (TclTeardownNamespace): Tcl_Obj-ified * tests/namespace.test (namespace-8.5,6): the save/restore of ::errorInfo and ::errorCode during global namespace teardown. Revised the comment to clarify why this is done, and added tests that will fail if this is not done. * generic/tclResult.c (TclTransferResult): Added safety checks so that unexpected undefined ::errorInfo or ::errorCode will not lead to a segfault. * generic/tclTrace.c (TclCallVarTraces): Save/restore the flag * tests/var.test (var-16.1): values that define part of the interpreter state during variable traces. [Bug 10381021]. (check-in: 6dfe14b116, user: dgp, branch: trunk) |
| 339.1 days |
win/tcl.dsp |
many more TIP 173 changes (check-in: e64761cd12, user: kennykb, branch: trunk) |
| 340.0 days |
tests/if.test tests/while.test |
Report compilation errors at runtime, [Patch 103368] by dgp. (check-in: aaebedbc1e, user: msofer, branch: trunk) |
| 342.6 days |
tests/pkg.test |
* generic/tclBasic.c: Corrections to the 2004-09-21 commit * generic/tclExecute.c: regarding ERR_ALREADY_LOGGED. That commit * generic/tclNamesp.c: caused Tk test send-10.7 to fail. Added * tests/namespace.test (25.7,8): tests in the Tcl test suite * tests/pkg.test (2.25,26): to catch this error without the aid of Tk in the future. (check-in: daeee3f99a, user: dgp, branch: trunk) |
| 343.7 days |
tests/misc.test |
* generic/tclCmdMZ.c (TclProcessReturn): Support the -errorline * generic/tclCompile.c (TclCompileScript): option to [return]. * tests/compile.test (16.23.*): Use that capability to defer reporting * tests/misc.test (1.2): of parse errors until runtime. Updated tests to reflect change. [Bug 1032805] (check-in: b9d1ceb353, user: dgp, branch: trunk) |
| 344.0 days |
tests/proc.test |
* generic/tclExecute.c (INST_START_CMD): * tests/proc.test (7.2-3): fix for [Bug 729692] was incorrect whenever a loop exception was returned. (check-in: 00f84eda0b, user: msofer, branch: trunk) |
| 348.0 days |
doc/AppInit.3 doc/DoOneEvent.3 doc/RecEvalObj.3 |
More fixes from Mikhail Kolesnitchenko, and also standardize highlighting of symbols like TCL_OK, TCL_ERROR, etc. (check-in: 98776f7151, user: dkf, branch: trunk) |
| 358.9 days |
library/tzdata/America/Atka library/tzdata/America/Buenos_Aires library/tzdata/America/Catamarca library/tzdata/America/Cordoba library/tzdata/America/Ensenada library/tzdata/America/Fort_Wayne library/tzdata/America/Indiana/Indianapolis library/tzdata/America/Jujuy library/tzdata/America/Kentucky/Louisville library/tzdata/America/Knox_IN library/tzdata/America/Mendoza library/tzdata/America/Porto_Acre library/tzdata/America/Shiprock library/tzdata/America/Virgin library/tzdata/Antarctica/South_Pole library/tzdata/Arctic/Longyearbyen library/tzdata/Asia/Ashkhabad library/tzdata/Asia/Chungking library/tzdata/Asia/Dacca library/tzdata/Asia/Istanbul library/tzdata/Asia/Macao library/tzdata/Asia/Tel_Aviv library/tzdata/Asia/Thimbu library/tzdata/Asia/Ujung_Pandang library/tzdata/Asia/Ulan_Bator library/tzdata/Atlantic/Jan_Mayen library/tzdata/Australia/ACT library/tzdata/Australia/Canberra library/tzdata/Australia/LHI library/tzdata/Australia/NSW library/tzdata/Australia/North library/tzdata/Australia/Queensland library/tzdata/Australia/South library/tzdata/Australia/Tasmania library/tzdata/Australia/Victoria library/tzdata/Australia/West library/tzdata/Australia/Yancowinna library/tzdata/Brazil/DeNoronha library/tzdata/Brazil/East library/tzdata/Brazil/West library/tzdata/CST6CDT library/tzdata/Canada/Atlantic library/tzdata/Canada/Central library/tzdata/Canada/East-Saskatchewan library/tzdata/Canada/Eastern library/tzdata/Canada/Mountain library/tzdata/Canada/Newfoundland library/tzdata/Canada/Pacific library/tzdata/Canada/Saskatchewan library/tzdata/Canada/Yukon library/tzdata/Chile/Continental library/tzdata/Chile/EasterIsland library/tzdata/Cuba library/tzdata/EST library/tzdata/EST5EDT library/tzdata/Egypt library/tzdata/Eire library/tzdata/Etc/GMT+0 library/tzdata/Etc/GMT-0 library/tzdata/Etc/GMT0 library/tzdata/Etc/Greenwich library/tzdata/Etc/Universal library/tzdata/Etc/Zulu library/tzdata/Europe/Bratislava library/tzdata/Europe/Ljubljana library/tzdata/Europe/Mariehamn library/tzdata/Europe/Nicosia library/tzdata/Europe/San_Marino library/tzdata/Europe/Sarajevo library/tzdata/Europe/Skopje library/tzdata/Europe/Tiraspol library/tzdata/Europe/Vatican library/tzdata/Europe/Zagreb library/tzdata/GB library/tzdata/GB-Eire library/tzdata/GMT library/tzdata/HST library/tzdata/Hongkong library/tzdata/Iceland library/tzdata/Iran library/tzdata/Israel library/tzdata/Jamaica library/tzdata/Japan library/tzdata/Kwajalein library/tzdata/Libya library/tzdata/MST library/tzdata/MST7MDT library/tzdata/Mexico/BajaNorte library/tzdata/Mexico/BajaSur library/tzdata/Mexico/General library/tzdata/NZ library/tzdata/NZ-CHAT library/tzdata/PRC library/tzdata/PST8PDT library/tzdata/Pacific/Samoa library/tzdata/Poland library/tzdata/Portugal library/tzdata/ROC library/tzdata/ROK library/tzdata/Singapore library/tzdata/SystemV/AST4 library/tzdata/SystemV/AST4ADT library/tzdata/SystemV/CST6 library/tzdata/SystemV/CST6CDT library/tzdata/SystemV/EST5 library/tzdata/SystemV/EST5EDT library/tzdata/SystemV/HST10 library/tzdata/SystemV/MST7 library/tzdata/SystemV/MST7MDT library/tzdata/SystemV/PST8 library/tzdata/SystemV/PST8PDT library/tzdata/SystemV/YST9 library/tzdata/SystemV/YST9YDT library/tzdata/Turkey library/tzdata/UCT library/tzdata/US/Alaska library/tzdata/US/Aleutian library/tzdata/US/Arizona library/tzdata/US/Central library/tzdata/US/East-Indiana library/tzdata/US/Eastern library/tzdata/US/Hawaii library/tzdata/US/Indiana-Starke library/tzdata/US/Michigan library/tzdata/US/Mountain library/tzdata/US/Pacific library/tzdata/US/Pacific-New library/tzdata/US/Samoa library/tzdata/UTC library/tzdata/W-SU |
* generic/tclTimer.c: Removed a premature optimisation that attempted to store the assoc data in the client data; the optimisation caused a bug that [after] would overwrite its imports. [Bug 1016167] * library/clock.tcl (InitTZData, ClearCaches): Changed so that the in-memory time zone :UTC (and its aliases) always gets reinitialised, in case tzdata is absent. [Bug 1019537, 1023779] * library/tzdata/*: Regenerated. * tests/clock.test (clock-31.*, clock-39.1): Corrected a problem where the 'system' locale tests fail on a non-English Windows machine. [Bug 1023761]. Added a test to make sure that alias time zones load correctly. [Bug 1023779]. * tools/tclZIC.tcl (writeLinks): Corrected a problem where alias time zone names were written incorrectly, causing them to fail to load at run time. [Bug 1023779]. * win/tclWinTime.c (Tcl_GetTime): Eliminated CPUID tests on Win64 - assuming that HAL vendors now do a better job of keeping the performance counters synchronized among CPU's. [Bug 1020445] (check-in: 58fb9afc44, user: kennykb, branch: trunk) |
| 360.3 days |
doc/Alloc.3 doc/CrtTimerHdlr.3 doc/DoubleObj.3 doc/StdChannels.3 doc/TCL_MEM_DEBUG.3 doc/ToUpper.3 doc/memory.n doc/packagens.n doc/safe.n doc/tclsh.1 |
More documentation fixes from Mikhail Kolesnitchenko. [Patch 1022527] (check-in: 3e34564c9e, user: dkf, branch: trunk) |
| 1.00 years |
doc/history.n |
Grammar and spelling fixes. [Patch 1018486] (check-in: 1b588c2346, user: dkf, branch: trunk) |
| 1.01 years |
tests/namespace-old.test |
Fix old tests to check [namespace which] sanely... (check-in: 02562339b9, user: dkf, branch: trunk) |
| 1.02 years |
generic/tclTestProcBodyObj.c |
* generic/tclProc.c: The routine TclProcInterpProc was a specific * generic/tclTestProcBodyObj.c: instance of the general service already provided by TclObjInvokeProc. Removed TclProcInterpProc and TclGetInterpProc from the code... * generic/tclInt.decls ...and from the internal stubs table. * generic/tclIntDecls.h * generic/tclStubInit.c (check-in: d67b8edcbd, user: dgp, branch: trunk) |
| 1.04 years |
tests/httpd |
Fixed httpd's abuse of the [clock] command (check-in: 50364f0355, user: kennykb, branch: trunk) |
| 1.04 years |
library/msgs/af.msg library/msgs/af_za.msg library/msgs/ar.msg library/msgs/ar_in.msg library/msgs/ar_jo.msg library/msgs/ar_lb.msg library/msgs/ar_sy.msg library/msgs/be.msg library/msgs/bg.msg library/msgs/bn.msg library/msgs/bn_in.msg library/msgs/ca.msg library/msgs/cs.msg library/msgs/da.msg library/msgs/de.msg library/msgs/de_at.msg library/msgs/de_be.msg library/msgs/el.msg library/msgs/en_au.msg library/msgs/en_be.msg library/msgs/en_bw.msg library/msgs/en_ca.msg library/msgs/en_gb.msg library/msgs/en_hk.msg library/msgs/en_ie.msg library/msgs/en_in.msg library/msgs/en_nz.msg library/msgs/en_ph.msg library/msgs/en_sg.msg library/msgs/en_za.msg library/msgs/en_zw.msg library/msgs/eo.msg library/msgs/es.msg library/msgs/es_ar.msg library/msgs/es_bo.msg library/msgs/es_cl.msg library/msgs/es_co.msg library/msgs/es_cr.msg library/msgs/es_do.msg library/msgs/es_ec.msg library/msgs/es_gt.msg library/msgs/es_hn.msg library/msgs/es_mx.msg library/msgs/es_ni.msg library/msgs/es_pa.msg library/msgs/es_pe.msg library/msgs/es_pr.msg library/msgs/es_py.msg library/msgs/es_sv.msg library/msgs/es_uy.msg library/msgs/es_ve.msg library/msgs/et.msg library/msgs/eu.msg library/msgs/eu_es.msg library/msgs/fa.msg library/msgs/fa_in.msg library/msgs/fa_ir.msg library/msgs/fi.msg library/msgs/fo.msg library/msgs/fo_fo.msg library/msgs/fr.msg library/msgs/fr_be.msg library/msgs/fr_ca.msg library/msgs/fr_ch.msg library/msgs/ga.msg library/msgs/ga_ie.msg library/msgs/gl.msg library/msgs/gl_es.msg library/msgs/gv.msg library/msgs/gv_gb.msg library/msgs/he.msg library/msgs/hi.msg library/msgs/hi_in.msg library/msgs/hr.msg library/msgs/hu.msg library/msgs/id.msg library/msgs/id_id.msg library/msgs/is.msg library/msgs/it.msg library/msgs/it_ch.msg library/msgs/ja.msg library/msgs/kl.msg library/msgs/kl_gl.msg library/msgs/ko.msg library/msgs/ko_kr.msg library/msgs/kok.msg library/msgs/kok_in.msg library/msgs/kw.msg library/msgs/kw_gb.msg library/msgs/lt.msg library/msgs/lv.msg library/msgs/mk.msg library/msgs/mr.msg library/msgs/mr_in.msg library/msgs/ms.msg library/msgs/ms_my.msg library/msgs/mt.msg library/msgs/nb.msg library/msgs/nl.msg library/msgs/nl_be.msg library/msgs/nn.msg library/msgs/pl.msg library/msgs/pt.msg library/msgs/pt_br.msg library/msgs/ro.msg library/msgs/ru.msg library/msgs/ru_ua.msg library/msgs/sh.msg library/msgs/sk.msg library/msgs/sl.msg library/msgs/sq.msg library/msgs/sr.msg library/msgs/sv.msg library/msgs/sw.msg library/msgs/ta.msg library/msgs/ta_in.msg library/msgs/te.msg library/msgs/te_in.msg library/msgs/th.msg library/msgs/tr.msg library/msgs/uk.msg library/msgs/vi.msg library/msgs/zh.msg library/msgs/zh_cn.msg library/msgs/zh_hk.msg library/msgs/zh_sg.msg library/msgs/zh_tw.msg library/tzdata/Africa/Abidjan library/tzdata/Africa/Accra library/tzdata/Africa/Addis_Ababa library/tzdata/Africa/Algiers library/tzdata/Africa/Asmera library/tzdata/Africa/Bamako library/tzdata/Africa/Bangui library/tzdata/Africa/Banjul library/tzdata/Africa/Bissau library/tzdata/Africa/Blantyre library/tzdata/Africa/Brazzaville library/tzdata/Africa/Bujumbura library/tzdata/Africa/Cairo library/tzdata/Africa/Casablanca library/tzdata/Africa/Ceuta library/tzdata/Africa/Conakry library/tzdata/Africa/Dakar library/tzdata/Africa/Dar_es_Salaam library/tzdata/Africa/Djibouti library/tzdata/Africa/Douala library/tzdata/Africa/El_Aaiun library/tzdata/Africa/Freetown library/tzdata/Africa/Gaborone library/tzdata/Africa/Harare library/tzdata/Africa/Johannesburg library/tzdata/Africa/Kampala library/tzdata/Africa/Khartoum library/tzdata/Africa/Kigali library/tzdata/Africa/Kinshasa library/tzdata/Africa/Lagos library/tzdata/Africa/Libreville library/tzdata/Africa/Lome library/tzdata/Africa/Luanda library/tzdata/Africa/Lubumbashi library/tzdata/Africa/Lusaka library/tzdata/Africa/Malabo library/tzdata/Africa/Maputo library/tzdata/Africa/Maseru library/tzdata/Africa/Mbabane library/tzdata/Africa/Mogadishu library/tzdata/Africa/Monrovia library/tzdata/Africa/Nairobi library/tzdata/Africa/Ndjamena library/tzdata/Africa/Niamey library/tzdata/Africa/Nouakchott library/tzdata/Africa/Ouagadougou library/tzdata/Africa/Porto-Novo library/tzdata/Africa/Sao_Tome library/tzdata/Africa/Timbuktu library/tzdata/Africa/Tripoli library/tzdata/Africa/Tunis library/tzdata/Africa/Windhoek library/tzdata/America/Adak library/tzdata/America/Anchorage library/tzdata/America/Anguilla library/tzdata/America/Antigua library/tzdata/America/Araguaina library/tzdata/America/Argentina/Buenos_Aires library/tzdata/America/Argentina/Catamarca library/tzdata/America/Argentina/ComodRivadavia library/tzdata/America/Argentina/Cordoba library/tzdata/America/Argentina/Jujuy library/tzdata/America/Argentina/La_Rioja library/tzdata/America/Argentina/Rio_Gallegos library/tzdata/America/Argentina/Tucuman library/tzdata/America/Argentina/Ushuaia library/tzdata/America/Aruba library/tzdata/America/Bahia library/tzdata/America/Barbados library/tzdata/America/Belem library/tzdata/America/Belize library/tzdata/America/Boa_Vista library/tzdata/America/Bogota library/tzdata/America/Cambridge_Bay library/tzdata/America/Cancun library/tzdata/America/Caracas library/tzdata/America/Cayenne library/tzdata/America/Cayman library/tzdata/America/Chihuahua library/tzdata/America/Costa_Rica library/tzdata/America/Curacao library/tzdata/America/Danmarkshavn library/tzdata/America/Dawson library/tzdata/America/Dawson_Creek library/tzdata/America/Detroit library/tzdata/America/Dominica library/tzdata/America/Edmonton library/tzdata/America/Eirunepe library/tzdata/America/El_Salvador library/tzdata/America/Fortaleza library/tzdata/America/Glace_Bay library/tzdata/America/Godthab library/tzdata/America/Goose_Bay library/tzdata/America/Grand_Turk library/tzdata/America/Grenada library/tzdata/America/Guadeloupe library/tzdata/America/Guatemala library/tzdata/America/Guayaquil library/tzdata/America/Guyana library/tzdata/America/Halifax library/tzdata/America/Hermosillo library/tzdata/America/Inuvik library/tzdata/America/Iqaluit library/tzdata/America/Jamaica library/tzdata/America/Juneau library/tzdata/America/La_Paz library/tzdata/America/Lima library/tzdata/America/Maceio library/tzdata/America/Manaus library/tzdata/America/Martinique library/tzdata/America/Mazatlan library/tzdata/America/Menominee library/tzdata/America/Merida library/tzdata/America/Mexico_City library/tzdata/America/Miquelon library/tzdata/America/Monterrey library/tzdata/America/Montreal library/tzdata/America/Montserrat library/tzdata/America/Nassau library/tzdata/America/Nipigon library/tzdata/America/Nome library/tzdata/America/Noronha library/tzdata/America/Panama library/tzdata/America/Pangnirtung library/tzdata/America/Paramaribo library/tzdata/America/Port_of_Spain library/tzdata/America/Porto_Velho library/tzdata/America/Puerto_Rico library/tzdata/America/Rainy_River library/tzdata/America/Rankin_Inlet library/tzdata/America/Recife library/tzdata/America/Regina library/tzdata/America/Rio_Branco library/tzdata/America/Santiago library/tzdata/America/Santo_Domingo library/tzdata/America/Scoresbysund library/tzdata/America/St_Johns library/tzdata/America/St_Kitts library/tzdata/America/St_Lucia library/tzdata/America/St_Thomas library/tzdata/America/St_Vincent library/tzdata/America/Swift_Current library/tzdata/America/Tegucigalpa library/tzdata/America/Thule library/tzdata/America/Thunder_Bay library/tzdata/America/Tijuana library/tzdata/America/Toronto library/tzdata/America/Tortola library/tzdata/America/Vancouver library/tzdata/America/Whitehorse library/tzdata/America/Winnipeg library/tzdata/America/Yakutat library/tzdata/America/Yellowknife library/tzdata/Antarctica/Casey library/tzdata/Antarctica/Davis library/tzdata/Antarctica/DumontDUrville library/tzdata/Antarctica/Mawson library/tzdata/Antarctica/McMurdo library/tzdata/Antarctica/Palmer library/tzdata/Antarctica/Rothera library/tzdata/Antarctica/Syowa library/tzdata/Antarctica/Vostok library/tzdata/Asia/Aden library/tzdata/Asia/Amman library/tzdata/Asia/Anadyr library/tzdata/Asia/Ashgabat library/tzdata/Asia/Baghdad library/tzdata/Asia/Bahrain library/tzdata/Asia/Bangkok library/tzdata/Asia/Beirut library/tzdata/Asia/Bishkek library/tzdata/Asia/Brunei library/tzdata/Asia/Calcutta library/tzdata/Asia/Choibalsan library/tzdata/Asia/Chongqing library/tzdata/Asia/Colombo library/tzdata/Asia/Damascus library/tzdata/Asia/Dhaka library/tzdata/Asia/Dili library/tzdata/Asia/Dubai library/tzdata/Asia/Dushanbe library/tzdata/Asia/Gaza library/tzdata/Asia/Harbin library/tzdata/Asia/Hong_Kong library/tzdata/Asia/Hovd library/tzdata/Asia/Irkutsk library/tzdata/Asia/Jakarta library/tzdata/Asia/Jayapura library/tzdata/Asia/Kabul library/tzdata/Asia/Kamchatka library/tzdata/Asia/Karachi library/tzdata/Asia/Kashgar library/tzdata/Asia/Katmandu library/tzdata/Asia/Krasnoyarsk library/tzdata/Asia/Kuala_Lumpur library/tzdata/Asia/Kuching library/tzdata/Asia/Kuwait library/tzdata/Asia/Macau library/tzdata/Asia/Magadan library/tzdata/Asia/Makassar library/tzdata/Asia/Manila library/tzdata/Asia/Muscat library/tzdata/Asia/Nicosia library/tzdata/Asia/Novosibirsk library/tzdata/Asia/Omsk library/tzdata/Asia/Phnom_Penh library/tzdata/Asia/Pontianak library/tzdata/Asia/Pyongyang library/tzdata/Asia/Qatar library/tzdata/Asia/Rangoon library/tzdata/Asia/Riyadh library/tzdata/Asia/Saigon library/tzdata/Asia/Sakhalin library/tzdata/Asia/Samarkand library/tzdata/Asia/Seoul library/tzdata/Asia/Shanghai library/tzdata/Asia/Singapore library/tzdata/Asia/Taipei library/tzdata/Asia/Tashkent library/tzdata/Asia/Tbilisi library/tzdata/Asia/Thimphu library/tzdata/Asia/Tokyo library/tzdata/Asia/Ulaanbaatar library/tzdata/Asia/Urumqi library/tzdata/Asia/Vientiane library/tzdata/Asia/Vladivostok library/tzdata/Asia/Yakutsk library/tzdata/Asia/Yekaterinburg library/tzdata/Asia/Yerevan library/tzdata/Atlantic/Azores library/tzdata/Atlantic/Bermuda library/tzdata/Atlantic/Canary library/tzdata/Atlantic/Cape_Verde library/tzdata/Atlantic/Faeroe library/tzdata/Atlantic/Madeira library/tzdata/Atlantic/Reykjavik library/tzdata/Atlantic/South_Georgia library/tzdata/Atlantic/St_Helena library/tzdata/Atlantic/Stanley library/tzdata/Australia/Adelaide library/tzdata/Australia/Brisbane library/tzdata/Australia/Broken_Hill library/tzdata/Australia/Darwin library/tzdata/Australia/Hobart library/tzdata/Australia/Lindeman library/tzdata/Australia/Lord_Howe library/tzdata/Australia/Melbourne library/tzdata/Australia/Perth library/tzdata/Australia/Sydney library/tzdata/CET library/tzdata/EET library/tzdata/Etc/GMT library/tzdata/Etc/GMT+1 library/tzdata/Etc/GMT+10 library/tzdata/Etc/GMT+11 library/tzdata/Etc/GMT+12 library/tzdata/Etc/GMT+2 library/tzdata/Etc/GMT+3 library/tzdata/Etc/GMT+4 library/tzdata/Etc/GMT+5 library/tzdata/Etc/GMT+6 library/tzdata/Etc/GMT+7 library/tzdata/Etc/GMT+8 library/tzdata/Etc/GMT+9 library/tzdata/Etc/GMT-1 library/tzdata/Etc/GMT-10 library/tzdata/Etc/GMT-11 library/tzdata/Etc/GMT-12 library/tzdata/Etc/GMT-13 library/tzdata/Etc/GMT-14 library/tzdata/Etc/GMT-2 library/tzdata/Etc/GMT-3 library/tzdata/Etc/GMT-4 library/tzdata/Etc/GMT-5 library/tzdata/Etc/GMT-6 library/tzdata/Etc/GMT-7 library/tzdata/Etc/GMT-8 library/tzdata/Etc/GMT-9 library/tzdata/Etc/UCT library/tzdata/Etc/UTC library/tzdata/Europe/Amsterdam library/tzdata/Europe/Andorra library/tzdata/Europe/Athens library/tzdata/Europe/Belfast library/tzdata/Europe/Belgrade library/tzdata/Europe/Berlin library/tzdata/Europe/Brussels library/tzdata/Europe/Bucharest library/tzdata/Europe/Budapest library/tzdata/Europe/Chisinau library/tzdata/Europe/Copenhagen library/tzdata/Europe/Dublin library/tzdata/Europe/Gibraltar library/tzdata/Europe/Helsinki library/tzdata/Europe/Istanbul library/tzdata/Europe/Kaliningrad library/tzdata/Europe/Kiev library/tzdata/Europe/Lisbon library/tzdata/Europe/London library/tzdata/Europe/Luxembourg library/tzdata/Europe/Madrid library/tzdata/Europe/Malta library/tzdata/Europe/Minsk library/tzdata/Europe/Monaco library/tzdata/Europe/Moscow library/tzdata/Europe/Oslo library/tzdata/Europe/Paris library/tzdata/Europe/Prague library/tzdata/Europe/Riga library/tzdata/Europe/Rome library/tzdata/Europe/Samara library/tzdata/Europe/Simferopol library/tzdata/Europe/Sofia library/tzdata/Europe/Stockholm library/tzdata/Europe/Tallinn library/tzdata/Europe/Tirane library/tzdata/Europe/Uzhgorod library/tzdata/Europe/Vaduz library/tzdata/Europe/Vienna library/tzdata/Europe/Vilnius library/tzdata/Europe/Warsaw library/tzdata/Europe/Zaporozhye library/tzdata/Europe/Zurich library/tzdata/Indian/Antananarivo library/tzdata/Indian/Christmas library/tzdata/Indian/Comoro library/tzdata/Indian/Kerguelen library/tzdata/Indian/Mahe library/tzdata/Indian/Maldives library/tzdata/Indian/Mauritius library/tzdata/Indian/Mayotte library/tzdata/Indian/Reunion library/tzdata/MET library/tzdata/Pacific/Apia library/tzdata/Pacific/Auckland library/tzdata/Pacific/Chatham library/tzdata/Pacific/Easter library/tzdata/Pacific/Efate library/tzdata/Pacific/Enderbury library/tzdata/Pacific/Fakaofo library/tzdata/Pacific/Fiji library/tzdata/Pacific/Funafuti library/tzdata/Pacific/Galapagos library/tzdata/Pacific/Gambier library/tzdata/Pacific/Guadalcanal library/tzdata/Pacific/Guam library/tzdata/Pacific/Honolulu library/tzdata/Pacific/Johnston library/tzdata/Pacific/Kiritimati library/tzdata/Pacific/Kosrae library/tzdata/Pacific/Kwajalein library/tzdata/Pacific/Majuro library/tzdata/Pacific/Marquesas library/tzdata/Pacific/Midway library/tzdata/Pacific/Nauru library/tzdata/Pacific/Niue library/tzdata/Pacific/Norfolk library/tzdata/Pacific/Noumea library/tzdata/Pacific/Pago_Pago library/tzdata/Pacific/Palau library/tzdata/Pacific/Pitcairn library/tzdata/Pacific/Ponape library/tzdata/Pacific/Port_Moresby library/tzdata/Pacific/Rarotonga library/tzdata/Pacific/Saipan library/tzdata/Pacific/Tahiti library/tzdata/Pacific/Tarawa library/tzdata/Pacific/Tongatapu library/tzdata/Pacific/Truk library/tzdata/Pacific/Wake library/tzdata/Pacific/Wallis library/tzdata/Pacific/Yap library/tzdata/WET tools/installData.tcl tools/loadICU.tcl tools/makeTestCases.tcl |
TIP #173 and #209 implementation - see ChangeLog for details (check-in: 251b9c6eca, user: kennykb, branch: trunk) |
| 1.05 years |
library/msgcat/msgcat.tcl |
* library/msgcat/msgcat.tcl: Added checks to prevent [mclocale] * tests/msgcat.test: from registering filesystem paths to possibly malicious code to be evaluated by a later [mcload]. (check-in: 7bfc5a8b19, user: dgp, branch: trunk) |
| 1.09 years |
tests/pkgMkIndex.test |
* library/package.tcl: Moved private command * library/tclIndex: [pkg_compareExtension] into ::tcl::Pkg. * tests/pkg_mkIndex.test: Also moved implementation of [::pkg::create] to [::tcl::Pkg::Create]. (check-in: 4e908b7bad, user: dgp, branch: trunk) |
| 1.15 years |
tools/man2help2.tcl |
Oops, forgot a bit (check-in: fb7a58d22d, user: dkf, branch: trunk) |
| 1.15 years |
tests/cmdMZ.test |
* tests/cmdMZ.test (cmdMZ-return-2.17): Added a test that a word containing backslash-quoted value is treated correctly. * generic/tclCompile.c (TclWordKnownAtCompileTime): [Bug 986196] Corrected flaw above and the flaw that caused TCL_TOKEN_SIMPLE_WORDs to have their original word value copied ( "{a b}" ) rather than the actual value ( "a b" ). Thanks to Kevin Kenny for report and tests. (check-in: 22941dd4e1, user: dgp, branch: trunk) |
| 1.17 years |
generic/regcomp.c |
* generic/regcomp.c (stid): correct minor pointer size error (check-in: 5e68b3a970, user: hobbs, branch: trunk) |
| 1.17 years |
tests/winPipe.test |
tests/winPipe.test (winpipe-1.11): Fixed a bug that caused test to fail if the path name of the working directory contained whitespace [Bug 678430] (check-in: deda5ef522, user: kennykb, branch: trunk) |
| 1.17 years |
doc/filename.n |
fix to trailing slash documentation and to a filesystem 'file join' bug on windows (check-in: 3753a9000e, user: vincentdarley, branch: trunk) |
| 1.19 years |
tests/dstring.test |
Fix constraints so can test with tclsh as well as tcltest [Bug 736431] (check-in: dcdd52fc3d, user: dkf, branch: trunk) |
| 1.19 years |
tests/unixFCmd.test tests/unixFile.test tests/winConsole.test tests/winNotify.test tests/winTime.test |
Standardize some use of test constraints onto names that are documented (check-in: f6289216a6, user: dkf, branch: trunk) |
| 1.19 years |
tests/stack.test |
Version of [Patch 746578] that works with Linux and is likely to work elsewhere (check-in: f7e8a16883, user: dkf, branch: trunk) |
| 1.21 years |
doc/library.n |
* doc/library.n: Moved variables ::auto_oldpath and * library/auto.tcl: ::unknown_pending into ::tcl namespace. * library/init.tcl: [Bugs 808319, 948794] (check-in: 86b4f4513a, user: dgp, branch: trunk) |
| 1.23 years |
unix/dltest/pkga.c unix/dltest/pkgua.c |
Silence compiler warnings. (check-in: 44e73905b2, user: dgp, branch: trunk) |
| 1.24 years |
tests/platform.test win/tclWinTest.c |
* generic/tcl.h: Corrected Tcl_WideInt declarations so that the mingw build works again. * generic/tclDecls.h: Changes to the tests for * generic/tclInt.decls: clock frequency in * generic/tclIntDecls.h: Tcl_WinTime * generic/tclIntPlatDecls.h: so that any clock frequency * generic/tclPlatDecls.h: is accepted provided that * generic/tclStubInit.c: all CPU's in the system share * tests/platform.test (platform-1.3): a common chip, and hence, * win/tclWin32Dll.c (TclWinCPUID): presumably, a common clock. * win/tclWinTest.c (TestwincpuidCmd) This change necessitated a * win/tclWinTime.c (Tcl_GetTime): small burst of assembly code to read CPU ID information, which was added as TclWinCPUID in the internal Stubs. To test this code in the common case of a single-processor machine, a 'testwincpuid' command was added to tclWinTest.c, and a test case in platform.test. Thanks to Jeff Godfrey and Richard Suchenwirth for reporting this bug. [Bug #976722] (check-in: ac070357cf, user: kennykb, branch: trunk) |
| 1.26 years |
doc/unknown.n |
Added example (check-in: e085e375ab, user: dkf, branch: trunk) |
| 1.27 years |
tests/http.test |
* doc/http.n (http::config): add -urlencoding option (default utf-8) * library/http/http.tcl: that specifies encoding conversion of * library/http/pkgIndex.tcl: args for http::formatQuery. Previously * tests/http.test: undefined, RFC 2718 says it should be utf-8. 'http::config -urlencoding {}' returns previous behavior, which will throw errors processing non-latin-1 chars. Bumped http package to 2.5.0. (check-in: 6165ec76fd, user: hobbs, branch: trunk) |
| 1.27 years |
tests/unload.test |
* tests/winPipe.test: Protect against path being set * tests/unixInit.test: Unset path when done. * tests/unload.test (unload-3.1): Verify [pkgb_sub] does not exist. Delete interps when done. (check-in: 2ec9fb613b, user: dgp, branch: trunk) |
| 1.27 years |
tests/autoMkindex.test |
* tests/autoMkindex.test (autoMkindex-5.2): Use variable "result" that gets cleaned up. * tests/exec.test: Clean up the "path" array. * tests/interp.test (interp-9.3): Initialize res, so prior values cannot make the test fail. (check-in: 60cd15fd68, user: dgp, branch: trunk) |
| 1.29 years |
tests/pid.test |
Oops! Duplicated a -constraints section, which confused tcltest (check-in: 326edd6056, user: dkf, branch: trunk) |
| 1.29 years |
tests/async.test tests/macOSXFCmd.test tests/rename.test tests/stringObj.test |
Massive test cleanup; all tests are run, and constraints are used where necessary. (check-in: ae1ac5736f, user: dkf, branch: trunk) |
| 1.29 years |
tests/security.test tests/unknown.test tests/while-old.test |
Fix whitespace (check-in: ba2565e0a2, user: dkf, branch: trunk) |
| 1.29 years |
tests/pwd.test |
Fix whitespace and add test for case when pwd can generate an error (check-in: 02d8df5801, user: dkf, branch: trunk) |
| 1.29 years |
tests/opt.test |
Fix whitespace (check-in: 4f5dc677cb, user: dkf, branch: trunk) |
| 1.29 years |
tests/httpold.test |
Removed trailing whitespace (check-in: 9d5a74f6f7, user: dkf, branch: trunk) |
| 1.29 years |
tests/history.test |
Converted from conditional tests into constrained tests (check-in: 8de91905bc, user: dkf, branch: trunk) |
| 1.29 years |
tests/eval.test tests/for-old.test tests/llength.test |
Remove trailing whitespace (check-in: fee6f7c466, user: dkf, branch: trunk) |
| 1.29 years |
tests/concat.test |
Remove trailing whitespace (check-in: 1beda09dc2, user: dkf, branch: trunk) |
| 1.29 years |
tests/dcall.test |
Use constraints, not conditional tests (check-in: 484d1a14f8, user: dkf, branch: trunk) |
| 1.29 years |
tests/case.test tests/join.test tests/split.test tests/uplevel.test |
Remove trailing whitespace (check-in: f1ee4c721b, user: dkf, branch: trunk) |
| 1.29 years |
tests/upvar.test |
Use contraints, not conditional tests. (check-in: f5f61ea0f3, user: dkf, branch: trunk) |
| 1.29 years |
tests/assocd.test |
Use constraints, not conditional invokation of test. (check-in: 492e74696a, user: dkf, branch: trunk) |
| 1.29 years |
tools/index.tcl |
More adaptations to understand .SS macros. (check-in: 86d6a29be3, user: dkf, branch: trunk) |
| 1.31 years |
win/coffbase.txt |
had to raise the size of the tls extension due to it getting rather fat when built statically to OpenSSL (check-in: c9927422f7, user: davygrvy, branch: trunk) |
| 1.36 years |
ChangeLog.1999 |
Filling in names for email addresses in the "old days" Also cleaning up of extra whitespace (check-in: ea28493186, user: dkf, branch: trunk) |
| 1.40 years |
compat/gettod.c compat/memcmp.c compat/opendir.c compat/strtod.c compat/strtol.c compat/strtoul.c compat/waitpid.c generic/tclStubLib.c win/tclWinError.c |
Patch 922727 committed. Implements three changes: * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed): (check-in: 2e5b18c85c, user: dgp, branch: trunk) |
| 1.42 years |
library/msgcat/pkgIndex.tcl |
* library/msgcat/msgcat.tcl: Updated internals to make use of * library/msgcat/pkgIndex.tcl: [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. Also corrects bug to allow translation to an empty string. Bump to msgcat 1.4.1. [Patch 875055] (check-in: 45053de92d, user: dgp, branch: trunk) |
| 1.46 years |
generic/README tests/source.test tools/genStubs.tcl unix/README |
Removed support for Mac OS Classic platform [Patch 918142] (check-in: b6330dbac7, user: das, branch: trunk) |
| 1.48 years |
doc/Tcl.n |
fixed typos in documentation and comments (check-in: 720c4fb879, user: vincentdarley, branch: trunk) |
| 1.49 years |
win/buildall.vc.bat |
Checks MSDevDir, not MSVCDir envar. (check-in: b5776c465d, user: davygrvy, branch: trunk) |
| 1.50 years |
tools/tclSplash.bmp |
update patchlevel to 8.5a1 (check-in: 28d3b065c8, user: hobbs, branch: trunk) |
| 1.52 years |
unix/dltest/README |
TIP#100 implementation largely based on work by Georgios Petasis. (check-in: 4f599936a4, user: dkf, branch: trunk) |
| 1.52 years |
generic/regc_locale.c |
Fix memleak. [Bug 902562] (check-in: d3278367b9, user: dkf, branch: trunk) |
| 1.56 years |
win/nmakehlp.c |
better macro grepping logic (check-in: e404be82cc, user: davygrvy, branch: trunk) |
| 1.57 years |
win/tcl.rc win/tclsh.rc |
* win/makefile.vc: * win/rules.vc: * win/tcl.rc: * win/tclsh.rc: Added an 'unchecked' option to the OPTS macro so a core build with symbols can be linked to the non-debug enabled C run-time. As per discussion with Kevin Kenny. Called like this: nmake -af makefile.vc OPTS=unchecked,symbols This clarifies the meaning of the 'g' naming suffix to mean only that the binary requires the debug enabled C run-time. Whether the binary contains symbols or not is a seperate condition. (check-in: cc4a3db7ed, user: davygrvy, branch: trunk) |
| 1.63 years |
doc/lassign.n |
Basic implementation of TIP#57 - TclX's [lassign] command into Tcl core Not a direct copy * Better use of Tcl object API * More extensive test suite * More extensive documentation (check-in: 57030a2c1d, user: dkf, branch: trunk) |
| 1.73 years |
tools/man2tcl.c |
#ifdef'd out errno declarations; incompatible with recent glibc. [Bug 852369] (check-in: d06ae339af, user: dkf, branch: trunk) |
| 1.80 years |
tests/cmdInfo.test tests/ioUtil.test |
* doc/ParseCmd.3: Implementation of TIP 157. Adds recognition * doc/Tcl.n: of the new leading {expand} syntax on words. * generic/tcl.h: Parses such words as the new Tcl_Token type * generic/tclBasic.c: TCL_TOKEN_EXPAND_WORD. Updated Tcl_EvalEx * generic/tclCompile.c: and the bytecode compiler/execution engine * generic/tclCompile.h: to recognize the new token type. New opcodes * generic/tclExecute.c: INST_LIST_VERIFY and INST_INVOKE_EXP and a new * generic/tclParse.c: operand type OPERAND_ULIST1 are defined. Docs * generic/tclTest.c: and tests are included. * tests/basic.test: * tests/compile.test: * tests/parse.test: * library/auto.tcl: Replaced several [eval]s used to perform * library/package.tcl: argument expansion with the new syntax. * library/safe.tcl: In the test files lindex.test and lset.test, * tests/cmdInfo.test: replaced use of [eval] to force direct * tests/encoding.test: string evaluation with use of [testevalex] * tests/execute.test: which more directly and robustly serves the * tests/fCmd.test: same purpose. * tests/http.test: * tests/init.test: * tests/interp.test: * tests/io.test: * tests/ioUtil.test: * tests/iogt.test: * tests/lindex.test: * tests/lset.test: * tests/namespace-old.test: * tests/namespace.test: * tests/pkg.test: * tests/pkgMkIndex.test: * tests/proc.test: * tests/reg.test: * tests/trace.test: * tests/upvar.test: * tests/winConsole.test: * tests/winFCmd.test: (check-in: cbfb8313ba, user: dgp, branch: trunk) |
| 1.90 years |
tests/utf.test |
Added constraint to the new tests. (check-in: e697dfc739, user: dgp, branch: trunk) |
| 1.91 years |
tests/lrepeat.test tests/notify.test |
* tests/reg.test: Corrected duplicate test names. * tests/resource.test: [Bugs 710370, 710358] * tests/dict.test: * tests/dict.test: Updated [package require tcltest] lines to * tests/fileSystem.test: indiciate that these test files * tests/lrepeat.test: use features of tcltest 2. [Bug 706114] * tests/notify.test: * tests/parseExpr.test: * tests/unixNotfy.test: * tests/winDde.test: (check-in: 35fbcc69fd, user: dgp, branch: trunk) |
| 1.92 years |
doc/Exit.3 |
Oops. Missed out on an index line update (check-in: 4f07f60509, user: dkf, branch: trunk) |
| 1.98 years |
library/opt/optparse.tcl |
* library/opt/optparse.tcl: Latest revisions caused [OptGuessType] to guess "int" instead of "string" for empty strings. Missed the required "-strict" option to [string is]. Thanks to Revar Desmera. [Bug 803968] (check-in: 16fd6c7944, user: dgp, branch: trunk) |
| 2.06 years |
doc/lrepeat.n |
TIP#136 IMPLEMENTATION. We now have an [lrepeat] command! (check-in: 149199766b, user: dkf, branch: trunk) |
| 2.11 years |
tests/list.test |
* tests/async.test: Added several tests that demonstrate Tcl * tests/basic.test: Bug 489537, Tcl's longstanding failure to * tests/dict.test: properly quote any leading '#' character * tests/dstring.test: when generating the string rep of a list * tests/list.test: so that the comment-power of that character * tests/parse.test: is hidden from any [eval], in order to * tests/util.test: satisfy the documentation that [list] does [eval]-safe quoting. (check-in: 03d3df98ff, user: dgp, branch: trunk) |
| 2.11 years |
ChangeLog.2002 |
Split off ChangeLog.2002 (check-in: b5cdac8baa, user: rmax, branch: trunk) |
| 2.13 years |
macosx/Tcl.pbproj/jingham.pbxuser macosx/Tcl.pbproj/project.pbxproj |
* unix/tclUnixFCmd.c: fix for compilation errors on platforms where configure detects non-functional chflags(). [Bug 748946] * macosx/Makefile: Rewrote buildsystem for Mac OS X framework build to be purely make driven; in order to become independent of Apple's closed-source IDE and build tool. The changes are intended to be transparent to the Makefile user, all existing make targets and cmd line variable overrides should continue to work. Changed build to only include tcl specific html help in Tcl.framework, the tk specific html help is now included in Tk.framework. Added var to allow overriding of tclsh used during html help building (Landon Fuller). * macosx/Tcl.pbproj/project.pbxproj: * macosx/Tcl.pbproj/jingham.pbxuser: Changed to purely call through to the make driven buildsystem; Tcl.framework is no longer assembled by ProjectBuilder. Set default SYMROOT in target options to simplify setting up PB (manually setting common build folder for tcl & tk no longer needed). * tools/tcltk-man2html.tcl: Added options to allow building only the tcl or tk html help files; the default behaviour with none of the new options is to build both, as before. * unix/Makefile.in: Added targets for building only the tcl or tk help. * macosx/README (new): Tcl specific excerpts of tk/macosx/README. * generic/tcl.h: Updated reminder comment about editing macosx/Tcl.pbproj/project.pbxproj when version number changes. (check-in: f0dc607cb1, user: das, branch: trunk) |
| 2.13 years |
generic/regcustom.h |
* generic/tcl.h: add recognition of -DTCL_UTF_MAX=6 on the * generic/regcustom.h: make line to support UCS-4 mode. No config arg at this time, as it is not the recommended build mode. (check-in: bd6af5153d, user: hobbs, branch: trunk) |
| 2.24 years |
tools/man2help.tcl |
Fix for [Bug 748700] (check-in: 6fd09cb29f, user: mistachkin, branch: trunk) |
| 2.31 years |
tools/encoding/txt2enc.c |
fix for [Bug 733221] (check-in: d95fa584b3, user: mistachkin, branch: trunk) |
| 2.42 years |
tests/README |
* tests/README: Direct [source] of *.test files is no longer recommended. The tests/*.test files should only be evaluated under the control of the [runAllTests] command in tests/all.tcl. (check-in: 641c37add3, user: dgp, branch: trunk) |
| 2.43 years |
tests/set-old.test |
Altered test numers to eliminate duplicates, [Bugs 710313, 710320, 710352] (check-in: 101098e0e0, user: msofer, branch: trunk) |
| 2.43 years |
tests/parseOld.test |
More elimination of dup test numbers [Bugs 710365, 710369] (check-in: 195a1e4b1c, user: dkf, branch: trunk) |
| 2.43 years |
tests/foreach.test tests/if-old.test |
Eliminated duplicate test numbers [Bugs 710322, 710327, 710349, 710363] (check-in: c4260afab6, user: dkf, branch: trunk) |
| 2.44 years |
unix/dltest/pkgb.c unix/dltest/pkgc.c unix/dltest/pkgd.c unix/dltest/pkge.c unix/dltest/pkgf.c |
* unix/dltest/pkg?.c: Changed all Tcl_InitStubs calls to pass argument exact = 0, so that rebuilds are not required when Tcl bumps to a new version. [Bug 701926] (check-in: 876ccce5ef, user: dgp, branch: trunk) |
| 2.46 years |
library/opt/pkgIndex.tcl |
* library/auto.tcl: Replaced [regexp] and [regsub] with * library/history.tcl: [string map] where possible. Thanks * library/ldAout.tcl: to David Welton. [Bugs 667456,667558] * library/safe.tcl: Bumped to http 2.4.3, opt 0.4.5, and * library/http/http.tcl: tcltest 2.2.3. * library/http/pkgIndex.tcl: * library/opt/optparse.tcl: * library/opt/pkgIndex.tcl: * library/tcltest/tcltest.tcl: * library/tcltest/pkgIndex.tcl: * tools/genStubs.tcl: * tools/tcltk-man2html.tcl: * unix/mkLinks.tcl: (check-in: 1906022d3b, user: dgp, branch: trunk) |
| 2.47 years |
tools/configure tools/configure.in |
Require autoconf 2.57 or newer, see TIP 34 for a detailed explanation of why this is good. This will no doubt break the build on some platforms, let the flaming begin. * tools/configure: Regen with autoconf 2.57. * tools/configure.in: Require autoconf 2.57. * unix/configure: Regen with autoconf 2.57. * unix/configure.in: Require autoconf 2.57. Apply AC_LIBOBJ changes from patch 529884. * unix/tcl.m4: Ditto. * win/configure: Regen with autoconf 2.57. * win/configure.in: Require autoconf 2.57. Don't subst LIBOBJS since this happens by default, this avoids an autoconf error. (check-in: e8d2110460, user: mdejong, branch: trunk) |
| 2.50 years |
tools/tcl.hpj.in |
* README: Bumped version number of * generic/tcl.h: Tcl to 8.5a0. * library.init.tcl: * mac/README: * macosx/Tcl.pbproj/project.pbxproc: * tests/basic.test: * tools/configure.in: * tools/tcl.hpj.in: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README: * win/README.binary: * win/configure.in: * win/makefile.bc: * win/makefile.vc: * win/tcl.m4: * tools/configure: autoconf * unix/configure: * win/configure: (check-in: a5f8f0d439, user: dgp, branch: trunk) |
| 2.53 years |
library/encoding/cp932.enc library/encoding/euc-jp.enc library/encoding/iso2022-jp.enc library/encoding/jis0208.enc library/encoding/shiftjis.enc |
* generic/tclEncoding.c (LoadTableEncoding): * library/encoding/cp932.enc: Correct jis round-trip encoding * library/encoding/euc-jp.enc: by adding 'R' type to .enc files. * library/encoding/iso2022-jp.enc: [Patch #689341] (koboyasi, taguchi) * library/encoding/jis0208.enc: * library/encoding/shiftjis.enc: * tests/encoding.test: (check-in: 3e571abd43, user: hobbs, branch: trunk) |
| 2.65 years |
tools/encoding/cp437.txt tools/encoding/cp737.txt tools/encoding/cp775.txt tools/encoding/cp850.txt tools/encoding/cp852.txt tools/encoding/cp855.txt tools/encoding/cp857.txt tools/encoding/cp860.txt tools/encoding/cp861.txt tools/encoding/cp862.txt tools/encoding/cp863.txt tools/encoding/cp864.txt tools/encoding/cp865.txt tools/encoding/cp866.txt tools/encoding/cp869.txt |
remove unused variable (check-in: e7546a259f, user: vincentdarley, branch: trunk) |
| 2.91 years |
tools/eolFix.tcl |
[file exist] -> [file exists]... (check-in: 147f89d646, user: dkf, branch: trunk) |
| 2.93 years |
unix/ldAix |
* unix/ldAix (nmopts): add -X32_64 to make it work for 32 or 64bit mode compilation. (check-in: f7c823955c, user: hobbs, branch: trunk) |
| 2.93 years |
library/encoding/koi8-u.enc |
* library/encoding/koi8-u.enc: removed extraneous spaces that confused encoding reader. [Bug #615115] (check-in: 9f70afe199, user: hobbs, branch: trunk) |
| 3.08 years |
unix/tclXtTest.c |
* doc/CmdCmplt.3: Applied Patch 585105 to fully CONST-ify * doc/Concat.3: all remaining public interfaces of Tcl. * doc/CrtCommand.3: Notably, the parser no longer writes on * doc/CrtSlave.3: the string it is parsing, so it is no * doc/CrtTrace.3: longer necessary for Tcl_Eval() to be * doc/Eval.3: given a writable string. Also, the * doc/ExprLong.3: refactoring of the Tcl_*Var* routines * doc/LinkVar.3: by Miguel Sofer is included, so that the * doc/ParseCmd.3: "part1" argument for them no longer needs * doc/SetVar.3: to be writable either. * doc/TraceVar.3: * doc/UpVar.3: Compatibility support has been enhanced so * generic/tcl.decls that a #define of USE_NON_CONST will remove * generic/tcl.h all possible source incompatibilities with * generic/tclBasic.c the 8.3 version of the header file(s). * generic/tclCmdMZ.c The new #define of USE_COMPAT_CONST now does * generic/tclCompCmds.c what USE_NON_CONST used to do -- disable * generic/tclCompExpr.c only those new CONST's that introduce * generic/tclCompile.c irreconcilable incompatibilities. * generic/tclCompile.h * generic/tclDecls.h Several bugs are also fixed by this patch. * generic/tclEnv.c [Bugs 584051,580433] [Patches 585105,582429] * generic/tclEvent.c * generic/tclInt.decls * generic/tclInt.h * generic/tclIntDecls.h * generic/tclInterp.c * generic/tclLink.c * generic/tclObj.c * generic/tclParse.c * generic/tclParseExpr.c * generic/tclProc.c * generic/tclTest.c * generic/tclUtf.c * generic/tclUtil.c * generic/tclVar.c * mac/tclMacTest.c * tests/expr-old.test * tests/parseExpr.test * unix/tclUnixTest.c * unix/tclXtTest.c * win/tclWinTest.c (check-in: e476c22fec, user: dgp, branch: trunk) |
| 3.09 years |
generic/regc_cvec.c |
Fixes for regexp issues raised in [Bug 578363]. Lots of thanks to [email protected] for tracking them down! Also made the RE files touched meet the Tcl Engineering Guidelines a bit better (they've a long way to go, but this is a start...) (check-in: 8cfaf94bd8, user: dkf, branch: trunk) |
| 3.12 years |
ChangeLog.2001 |
Split off ChangeLog.2001 from ChangeLog (check-in: 618fd1a4d4, user: rmax, branch: trunk) |
| 3.12 years |
license.terms |
Added ActiveState to license.terms (check-in: 208d2721d2, user: dkf, branch: trunk) |
| 3.12 years |
generic/tclLoadNone.c |
Tcl_LoadHandle usage (check-in: 9fb2f4b2d3, user: vincentdarley, branch: trunk) |
| 3.15 years |
tests/event.test |
* Cleaned up, constrained, and reduced the amount of [exec] usage in the test suite. (check-in: b0f3dfed62, user: dgp, branch: trunk) |
| 3.18 years |
doc/CrtInterp.3 |
clarifications in doc/CrtInterp.3 and doc/StringObj.3 (check-in: b1c464dbca, user: msofer, branch: trunk) |
| 3.20 years |
tests/link.test |
* Corrections to tcltest and the Tcl test suite so that a test with options -constraints knownBug -limitConstraints 1 only tests the knownBug tests. Mostly involves replacing direct access to the testConstraints array with calls to the testConstraint command (which requires tcltest version 2). (check-in: 9ba9324aef, user: dgp, branch: trunk) |
| 3.24 years |
compat/tclErrno.h |
Make sure EOVERFLOW is defined on Unix. (check-in: 190346ee55, user: dkf, branch: trunk) |
| 3.43 years |
tools/feather.bmp |
* tools/feather.bmp: * tools/man2help.tcl: * tools/man2help2.tcl: * win/makefile.vc: More winhelp target fixups. Added a feather bitmap to the non-scrollable area and changed the color to be yellow from a plain white. The colors can be whatever we want them to be, but thought I would start with something bold. [Bug 527941] (check-in: 6678565482, user: davygrvy, branch: trunk) |
| 3.50 years |
library/encoding/iso2022.enc tools/encoding/iso2022-jp.esc tools/encoding/iso2022.esc |
* library/encoding/iso2022-jp.enc: * library/encoding/iso2022.enc: * tools/encoding/iso2022-jp.esc: * tools/encoding/iso2022.esc: gave <ESC>$B precedence over <ESC>$@, based on comments (point 1) in [Bug #219283] (rfc 1468) (check-in: ab9df3e822, user: hobbs, branch: trunk) |
| 3.51 years |
doc/Preserve.3 |
* doc/Alloc.3: * doc/LinkVar.3: * doc/ObjectType.3: * doc/PkgRequire.3: * doc/Preserve.3: * doc/TCL_MEM_DEBUG.3: Updated documentation to describe the ckalloc, ckfree, ckrealloc, attemptckalloc, and attemptckrealloc macros, and to accurately describe when and how they are used. [Bug #497459] (dgp) (check-in: 332048a6cb, user: hobbs, branch: trunk) |
| 3.59 years |
ChangeLog.2000 |
* ChangeLog.2000 (new file): * ChangeLog: broke changes from 2000 into ChangeLog.2000 to reduce size of the main ChangeLog. (check-in: 61dfae55d5, user: hobbs, branch: trunk) |
| 3.63 years |
tools/checkLibraryDoc.tcl |
* Updated APIs in the file generic/tclIO.c according to the guidelines of TIP 27. Several minor documentation corrections as well. * Updated channel driver interface according to the guidelines of TIP 27. See also [Bug 500348]. * Moved Tcl_EolTranslation enum declaration from generic/tcl.h to generic/tclInt.h (renamed to TclEolTranslation). It is not used anywhere in Tcl's public interface. (check-in: 9c9edf24eb, user: dgp, branch: trunk) |
| 3.77 years |
unix/install-sh |
*unix/Makefile.in: *unix/configure.in: *unix/install-sh: *unix/mkLinks: *unix/mkLinks.tcl: *unix/tclLoadDyld.c: *unix/tclMtherr.c: Mac OSX support: build system, dynamic code loading and support for case-insensitive filesystems in mkLinks (patch #435258) (check-in: f37029ffea, user: das, branch: trunk) |
| 3.80 years |
tests/lsetComp.test |
added lset tests and updated lindex tests for TIPs#22,33,45 by Kenny (check-in: 5325c5bfa8, user: hobbs, branch: trunk) |
| 3.81 years |
win/tcl.dsw |
* win/tcl.dsp: * win/tcl.dsw: Simple MsDev stub project files that calls makefile.vc. Will help run Tcl in the debugger easier without confusing MsDev for where the .pdb files are. (check-in: e3cc82ead4, user: davygrvy, branch: trunk) |
| 3.82 years |
win/tclConfig.sh.in |
Define TCL_INCLUDE_SPEC in tclConfig.sh. It should be included by extensions that need to find Tcl include headers in the install location. The user can override the include install dir with --includedir so we need to record this information for extensions. [Tcl bug 421835] * unix/configure: Regen. * unix/configure.in: Define TCL_INCLUDE_SPEC. * unix/tclConfig.sh.in: Define TCL_INCLUDE_SPEC. * win/configure: Regen. * win/configure.in: Define TCL_INCLUDE_SPEC. * win/tclConfig.sh.in: Define TCL_INCLUDE_SPEC. (check-in: 1b2b73902f, user: mdejong, branch: trunk) |
| 3.89 years |
library/encoding/ebcdic.enc tools/encoding/ebcdic.txt |
* library/encoding/ebcdic.enc: * tools/encoding/ebcdic.txt: EBCDIC charset mapping. [Patch #219323] (nijtmans) (check-in: 186e3e6270, user: hobbs, branch: trunk) |
| 3.89 years |
library/encoding/tis-620.enc tools/encoding/tis-620.txt |
* library/encoding/tis-620.enc: * tools/encoding/tis-620.txt: TIS-620 charset mapping. [Patch #467423] (poonlap) (check-in: 0ae6c21212, user: hobbs, branch: trunk) |
| 3.91 years |
library/encoding/cp936.enc library/encoding/cp949.enc library/encoding/cp950.enc library/encoding/iso8859-16.enc library/encoding/macCroatian.enc library/encoding/macCyrillic.enc library/encoding/macGreek.enc library/encoding/macIceland.enc library/encoding/macRoman.enc library/encoding/macTurkish.enc tools/encoding/cp1250.txt tools/encoding/cp1251.txt tools/encoding/cp1252.txt tools/encoding/cp1253.txt tools/encoding/cp1254.txt tools/encoding/cp1255.txt tools/encoding/cp1256.txt tools/encoding/cp1257.txt tools/encoding/cp1258.txt tools/encoding/cp874.txt tools/encoding/cp932.txt tools/encoding/cp936.txt tools/encoding/cp949.txt tools/encoding/cp950.txt tools/encoding/iso8859-1.txt tools/encoding/iso8859-10.txt tools/encoding/iso8859-13.txt tools/encoding/iso8859-14.txt tools/encoding/iso8859-15.txt tools/encoding/iso8859-16.txt tools/encoding/iso8859-2.txt tools/encoding/iso8859-3.txt tools/encoding/iso8859-4.txt tools/encoding/iso8859-5.txt tools/encoding/iso8859-6.txt tools/encoding/iso8859-7.txt tools/encoding/iso8859-8.txt tools/encoding/iso8859-9.txt tools/encoding/koi8-r.txt tools/encoding/macCentEuro.txt tools/encoding/macCroatian.txt tools/encoding/macCyrillic.txt tools/encoding/macGreek.txt tools/encoding/macIceland.txt tools/encoding/macRoman.txt tools/encoding/macTurkish.txt |
Updated encodings with latest mappings from www.unicode.org. This did not include some Mac encodings that have special multi-unichar translations now (like symbols, dingbats and japanese). Also does not include big5, gb or euc* as those have different formats in the latest Unicode version that need new conversion tools. Not all related .enc files changed as some had been updates separately. (check-in: a93c3e5d89, user: hobbs, branch: trunk) |
| 3.99 years |
tools/tclmin.wse |
* Updated http package to version 2.4, reflecting the new features just added. (check-in: 6b6e834d7c, user: dgp, branch: trunk) |
| 4.04 years |
win/tcl.hpj.in |
* tools/tcl.wse.in: * win/tcl.hpj.in: Removed -kb storage in CVS to ensure these text files to make sure they are checked-out in the translation mode CVS is in. Setting these as binary as part of an effort to make sure they are always in CRLF no matter what the CVS translation is bypassing how CVS works. * tools/genStubs.tcl: Removed LF-only output. Having to reconvert back to CRLF for committing to CVS was giving me a headache. (check-in: e97a82dfa5, user: davygrvy, branch: trunk) |
| 4.16 years |
tests/append.test |
* tests/append.test: * tests/appendComp.test: added tests for read trace triggering for append and lappend. (check-in: 42348667cb, user: hobbs, branch: trunk) |
| 4.26 years |
generic/tclUniData.c |
* generic/regc_locale.c: updated character class range data for Unicode v3.1.0 compliance. * generic/tclUniData.c: regenerated from Unicode v3.1.0 data file (new as of 2001-05-16). This brings Tcl to current unicode compliance. (check-in: 07fa5ce75a, user: hobbs, branch: trunk) |
| 4.26 years |
tools/uniClass.tcl tools/uniParse.tcl |
* tools/uniClass.tcl: added comments to output format and the script for clarification. * tools/uniParse.tcl: corrected filename output and GetDelta macro to use 'info' as param (was 'infO') (check-in: 17ae337d81, user: hobbs, branch: trunk) |
| 4.28 years |
library/encoding/cp1250.enc library/encoding/cp1251.enc library/encoding/cp1252.enc library/encoding/cp1253.enc library/encoding/cp1254.enc library/encoding/cp1255.enc library/encoding/cp1256.enc library/encoding/cp1257.enc library/encoding/cp1258.enc library/encoding/cp874.enc library/encoding/iso8859-10.enc library/encoding/iso8859-13.enc library/encoding/iso8859-14.enc library/encoding/iso8859-6.enc library/encoding/iso8859-7.enc library/encoding/iso8859-8.enc |
* library/encoding/cp1250.enc: * library/encoding/cp1251.enc: * library/encoding/cp1252.enc: * library/encoding/cp1253.enc: * library/encoding/cp1254.enc: * library/encoding/cp1255.enc: * library/encoding/cp1256.enc: * library/encoding/cp1257.enc: * library/encoding/cp1258.enc: * library/encoding/cp874.enc: * library/encoding/iso8859-6.enc: * library/encoding/iso8859-7.enc: * library/encoding/iso8859-8.enc: * library/encoding/iso8859-10.enc (new): * library/encoding/iso8859-13.enc (new): * library/encoding/iso8859-14.enc (new): updated encoding tables based on http://www.unicode.org/Public/MAPPINGS/. (kuhn) (check-in: 8883e16cf6, user: hobbs, branch: trunk) |
| 4.35 years |
library/encoding/iso8859-15.enc |
Got the encoding wrong; thanks to Richard Suchenwirth for pointing me in the direction of a correct encoding. (check-in: e7cab317cf, user: dkf, branch: trunk) |
| 4.98 years |
doc/case.n |
New or changed "SEE ALSO" section. (check-in: 2d43282569, user: poenitz, branch: trunk) |
| 5.35 years |
tools/genWinImage.tcl |
version cleanup (check-in: 26d383863d, user: hobbs, branch: trunk) |
| 5.37 years |
tools/Makefile.in |
* library/dde1.1/pkgIndex.tcl: * library/reg1.0/pkgIndex.tcl: * win/tclWinChan.c: * win/tclWinThrd.c: converted CRLF to LF the */tcl.hpj.in files were not converted, as it confuses hcw locally. [Bug: 5096] * win/Makefile.in: expanded cleanup or help files * doc/Thread.3: minor macro cleanup (check-in: c818263820, user: hobbs, branch: trunk) |
| 5.37 years |
win/tclsh.ico |
* win/Makefile.in: * win/tcl.rc: * win/tclsh.rc: * win/tclsh.ico: Modified copyright dates in Windows resource files. Added an icon for tclsh.exe. (check-in: ef4b92e1f8, user: redman, branch: trunk) |
| 5.39 years |
tests/package.test |
* tests/*.test: Changed all occurances of "namespace import ::tcltest" to "namespace import -force ::tcltest" [Bug: 3948]. (check-in: c2f93a113c, user: ericm, branch: trunk) |
| 5.58 years |
library/http1.0/http.tcl |
* library/http1.0/http.tcl: * library/http2.1/http.tcl: The query data POSTed was newline terminated when it shouldn't be altered [Bug: 4089] (check-in: 90fb17614b, user: hobbs, branch: trunk) |
| 5.63 years |
generic/regexec.c |
* README: * generic/tcl.h: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.m4: * win/README.binary: * win/configure.in: updated to patchlevel 8.3b2 (check-in: c857d53077, user: hobbs, branch: trunk) |
| 5.84 years |
unix/aclocal.m4 win/aclocal.m4 |
* unix/tclUnixPort.h: added utime.h to includes * unix/aclocal.m4: made it just include tcl.m4 (check-in: dedc005e01, user: hobbs, branch: trunk) |
| 5.87 years |
generic/regc_color.c |
* unix/tclUnixNotfy.c: fixed event/io threading problems by making triggerPipe non-blocking * library/tcltest1.0/tcltest.tcl: * generic/tclThreadTest.c: fixed mem leaks in threads * generic/tclResult.c: fixed Tcl_AppendResultVA so it only iterates once over the va_list (avoiding a memcpy of it, which is not portable). * generic/regc_color.c: fixed mem leak and assertion, from HS * generic/tclCompile.c: removed savedChar trick that appeared to be causing a segv when the literal table was released * tests/string.test: * generic/tclCmdMZ.c: fixed [string index] to return ByteArrayObj when indexing into one (test case string-5.16) [Bug: 2871] (check-in: 1a3cca95e4, user: hobbs, branch: trunk) |
| 5.89 years |
generic/regc_lex.c generic/regerrs.h generic/regex.h generic/regguts.h |
* generic/regc_color.c: * generic/regc_cvec.c: * generic/regc_lex.c: * generic/regc_locale.c: * generic/regcomp.c: * generic/regcustom.h: * generic/regerrs.h: * generic/regex.h: * generic/regexec.c: * generic/regguts.h: * generic/tclRegexp.c: * generic/tclTest.c: * tests/reg.test: updated to Henry Spencer's new regexp engine (mid-Sept 99). Should greatly reduce stack space reqs. (check-in: 801921c818, user: hobbs, branch: trunk) |
| 5.91 years |
tools/README |
* {win,mac,unix,tools,}/README: * win/README.binary: * win/makefile.vc: * {win,unix}/configure.in: * generic/tcl.h: * library/init.tcl: updated to 8.3a1 from 8.2.0. (check-in: 8424f29d2e, user: hobbs, branch: trunk) |
| 6.08 years |
generic/regc_nfa.c generic/rege_dfa.c |
* generic/regc_nfa.c: * generic/regcomp.c: * generic/rege_dfa.c: * generic/regexec.c: * generic/regguts.h: Applied patches supplied by Henry Spencer to greatly enhance the performance of certain classes of regular expressions. [Bug: 2440, 2447] (check-in: c161cf0289, user: stanton, branch: trunk) |
| 6.25 years |
generic/regerror.c generic/regfree.c generic/regfronts.c |
* tests/reg.test: * generic/regc_color.c: * generic/regc_cvec.c: * generic/regc_lex.c: * generic/regc_locale.c: * generic/regc_nfa.c: * generic/regcomp.c: * generic/regcustom.h: * generic/rege_dfa.c: * generic/regerror.c: * generic/regerrs.h: * generic/regex.h: * generic/regexec.c: * generic/regfree.c: * generic/regfronts.c: * generic/regguts.h: * generic/tclCmdMZ.c: * generic/tclRegexp.c: * generic/tclRegexp.h: * generic/tclTest.c: Applied Henry Spencer's latest regexp patches that fix an infinite loop bug and add support for testing whether a string could match with additional input. [Bug: 2117] (check-in: 96584c60d8, user: stanton, branch: trunk) |
| 6.34 years |
tools/encoding/README |
* Merged changes from 8.1.0 branch (check-in: dc45694c11, user: stanton, branch: trunk) |
| 6.36 years |
library/encoding/koi8-r.enc |
* library/encoding/koi8-r.enc: * tools/encoding/koi8-r.txt: Added support for the koi8-r Cyrillic encoding. [Bug: 1771] (check-in: 40dd26149a, user: stanton, branch: trunk) |
| 6.36 years |
win/stub16.c |
Resynced with mainline. (check-in: 45b9dd789f, user: rjohnson, branch: trunk) |
| 6.38 years |
compat/stdlib.h doc/SetRecLmt.3 library/encoding/ascii.enc library/encoding/big5.enc library/encoding/cp437.enc library/encoding/cp737.enc library/encoding/cp775.enc library/encoding/cp850.enc library/encoding/cp852.enc library/encoding/cp855.enc library/encoding/cp857.enc library/encoding/cp860.enc library/encoding/cp861.enc library/encoding/cp862.enc library/encoding/cp863.enc library/encoding/cp864.enc library/encoding/cp865.enc library/encoding/cp866.enc library/encoding/cp869.enc library/encoding/dingbats.enc library/encoding/euc-cn.enc library/encoding/euc-kr.enc library/encoding/gb12345.enc library/encoding/gb1988.enc library/encoding/gb2312-raw.enc library/encoding/gb2312.enc library/encoding/iso2022-kr.enc library/encoding/iso8859-1.enc library/encoding/iso8859-2.enc library/encoding/iso8859-3.enc library/encoding/iso8859-4.enc library/encoding/iso8859-5.enc library/encoding/iso8859-9.enc library/encoding/jis0201.enc library/encoding/jis0212.enc library/encoding/ksc5601.enc library/encoding/macCentEuro.enc library/encoding/macDingbats.enc library/encoding/macJapan.enc library/encoding/macRomania.enc library/encoding/macThai.enc library/encoding/macUkraine.enc library/encoding/symbol.enc tests/remote.tcl tools/encoding/Makefile tools/encoding/ascii.txt tools/encoding/big5.txt tools/encoding/cjk.inf tools/encoding/dingbats.txt tools/encoding/gb12345.txt tools/encoding/gb1988.txt tools/encoding/gb2312.txt tools/encoding/iso2022-kr.esc tools/encoding/jis0201.txt tools/encoding/jis0208.txt tools/encoding/jis0212.txt tools/encoding/ksc5601.txt tools/encoding/macDingbats.txt tools/encoding/macJapan.txt tools/encoding/macRomania.txt tools/encoding/macThai.txt tools/encoding/macUkraine.txt tools/encoding/shiftjis.txt tools/encoding/symbol.txt tools/regexpTestLib.tcl tools/str2c tools/white.bmp unix/tclUnixThrd.h win/tclWinThrd.h |
merged tcl 8.1 branch back into the main trunk (check-in: f3b32fb71c, user: stanton, branch: trunk) |
| 6.96 years |
compat/README compat/dirent.h compat/dirent2.h compat/dlfcn.h compat/fixstrtod.c compat/float.h compat/limits.h compat/strncasecmp.c compat/tmpnam.c compat/unistd.h doc/DoWhenIdle.3 win/cat.c |
Replaced SCCS strings, fixed binary files (check-in: 196f92fd17, user: stanton, branch: trunk) |
| 7.44 years |
library/http1.0/pkgIndex.tcl |
Initial revision (check-in: cacdd0f329, user: rjohnson, branch: trunk) |
