summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix signature and implementation of Tcl_HashStats,nijtmans2008-11-177-22/+26
| | | | | | such that it conforms to the documentation. FossilOrigin-Name: 2b7fc9b4445dd1264716d839f5b6637f5bbb766c
* Check for uncompiled-for-continue [Bug 2186888] fixed earlier.ferrieux2008-11-172-1/+19
| | | FossilOrigin-Name: af5cdb41e0dbb77517b29c9fb47bfd672c3c54cc
* change two Tcl_SetResult calls to Tcl_SetObjResult,nijtmans2008-11-162-5/+11
| | | | | | as simplification for the TIP #340 patch. FossilOrigin-Name: d58e03ce1a56cdc3aba7d51273465b2ef44cba61
* Tidy up formatting.dkf2008-11-161-612/+595
| | | FossilOrigin-Name: 720d076b4bb6759cc0c17d37379107a5881e31d9
* remove -Wno-implicit-intdas2008-11-141-2/+2
| | | FossilOrigin-Name: dc988d50fd824d481641b20439ed704358691ebf
* rename static function FSUnloadTempFile tonijtmans2008-11-134-16/+22
| | | | | | | | TclFSUnloadTempFile, needed in tclLoad.c Fixed [Bug 2269431]: load of shared objects leaves temporary files on windows FossilOrigin-Name: 9ed8aa87994ca8bd79984f3c6b7411e53d10de24
* Use HKEY_CURRENT_USER instead of HKEY_CLASSES_ROOT during tests. Writing topatthoyts2008-11-122-242/+248
| | | | | | | HKCR requires administrative access on many systems but HKLM is always available to the current user FossilOrigin-Name: f1163306debcb5485be28139d6c02e6bd020a232
* Use -O2 as gcc optimization compiler flag, and getnijtmans2008-11-123-6/+16
| | | | | | rid of -Wno-implicit-int for UNIX FossilOrigin-Name: e70541f4de07c004b787e750953acd34a604cb55
* Eliminate warning: passing arg 4 of `Tcl_SplitList' fromnijtmans2008-11-111-1/+1
| | | | | | | | incompatible pointer type reverted change from 2008-11-06 (was under the impression that "-Wno-implicit-int" added an extra warning) FossilOrigin-Name: dcb26387d582626166f56a734bf718761ff2581f
* Eliminate warning: passing arg 4 of `Tcl_SplitList' fromnijtmans2008-11-114-8/+16
| | | | | | | | incompatible pointer type reverted change from 2008-11-06 (was under the impression that "-Wno-implicit-int" added an extra warning) FossilOrigin-Name: c4b867d6512bf238f5a8795e85bb3ddfa74e97e9
* * doc/platform_shell.n: Fixed [Bug 2255235], reported by Ulrichandreas_kupries2008-11-107-13/+35
| | | | | | | | | | | * library/platform/pkgIndex.tcl: Ring <uring@users.sourceforge.net>. * library/platform/shell.tcl: Updated the LOCATE command in the * library/tm.tcl: package 'platform::shell' to handle the new form * unix/Makefile.in: of 'provide' commands generated by tm.tcl. Bumped * win/Makefile.in: package to version 1.1.4. Added cross-references to the relevant parts of the code to avoid future desynchronization. FossilOrigin-Name: 5f16738b097b7db1481f886529fc923f417719e9
* patch #2215022: clean up the binary ensemble initialization codepatthoyts2008-11-075-133/+127
| | | | | | | Applied a patch from Duoas which extends the TclMakeEnsemble command to handle sub-ensembles from tables. Cleaned up the original patch a bit. FossilOrigin-Name: ce65d5a8dec40b023c5367a0ef3670bd80f915b9
* add "-Wno-implicit-int" for gcc, as on UNIXnijtmans2008-11-064-6/+13
| | | | | | eliminate an 'array index out of bounds' warning on HP-UX' FossilOrigin-Name: 918ba31cc41da6d64a179a1ff21b515a9a285611
* * generic/tclPort.h: remove the ../win/ header dir as the buildhobbs2008-11-042-2/+8
| | | | | | | system already has it, and it confuses builds when used with private headers installed. FossilOrigin-Name: c98c3427258937f9f124d44b2a5f7bf0f9ca3a7f
* fix typo: s/ZoneinfoFile/LoadZoneinfoFile/das2008-11-011-2/+2
| | | FossilOrigin-Name: b61a23bf6212e9a7341a4febe47b49c19354bbe0
* Version bump of TclOOdkf2008-11-013-4/+8
| | | FossilOrigin-Name: 4c209e9ff37bc4904ba265a0972dabcdd2f18eb3
* remove unused variabledkf2008-11-011-2/+1
| | | FossilOrigin-Name: 194e7000591afbff957d40c919abbbbd710503c4
* Fix [Bug 2200824] and make class constructor error handling much more robust.dkf2008-10-316-58/+233
| | | FossilOrigin-Name: c8dd022f7e09fd76778993ccb2afd93d8089305a
* CONSTify TclDTraceInfonijtmans2008-10-281-1/+1
| | | | | | Eliminate some -Wstrings-write warnings FossilOrigin-Name: 4a0a87f2799be9c6ec9f5bcf8a116ad0329418ee
* CONSTify TclDTraceInfonijtmans2008-10-286-42/+50
| | | | | | Eliminate some -Wstrings-write warnings FossilOrigin-Name: f5c4b2c4b3c8439f4c332039b7a16441eda4fc06
* * generic/tclEncoding.c: Use "iso8859-1" and not "identity"dgp2008-10-272-5/+17
| | | | | | | | | | | | | | as the default and original [encoding system] value. Since "iso8859-1" is built in to the C source code for Tcl now, there's no availability issue, and it has the good feature of "identity" that we must have ("bytes in" == "bytes out") without the bad feature of "identity" ("broken as designed") that makes us want to abandon it. [RFE 2008609] *** POTENTIAL INCOMPATIBILITY for older releases of Tclkit and any other code expecting a particular value for Tcl's default system encoding *** FossilOrigin-Name: 557645d3733ee17a26c78e37bfd3f09e9f8202d0
* Style improvements - invoking callbacks without visual junk.dkf2008-10-262-10/+10
| | | FossilOrigin-Name: 4a9936c5ad1d87566ffbf3129c047869ad673226
* Style improvements - invoking callbacks without visual junk.dkf2008-10-2638-1136/+1132
| | | FossilOrigin-Name: a1a8afc25d47810e677f42869f79723f80f3d6a6
* Style improvements - invoking callbacks without visual junk.dkf2008-10-267-24/+24
| | | FossilOrigin-Name: de3bfd137a83d7f423d8681e54eb48e33722ce49
* Removed a rogue ^M from the end of a linepatthoyts2008-10-241-2/+2
| | | FossilOrigin-Name: 67dbd05fb43ddaf67122db1b75d115ba2036e98a
* Fixed a failure to read SHOUTcast streams with the new 2.7patthoyts2008-10-235-14/+23
| | | | | | | package. Introduced a new intial state as the first response may not be HTTP*. FossilOrigin-Name: 943b6dd8ce78a71414f906e8486998d242c1564b
* only create test.dat file on windows, it is never used on unix and creationdas2008-10-231-9/+13
| | | | | | may fail due to insufficient permissions FossilOrigin-Name: 7dff6665ffb04d1e38ac649b77d335c982341640
* * generic/tclCmdAH.c (ForNextCallback): handle TCL_CONTINUE inmsofer2008-10-232-2/+7
| | | | | | the for body [Bug 2186888]. FossilOrigin-Name: 9cb9b8e5ed0f4206419e5a14530b47d4729f8f3f
* Letting CONST die a slow and graceful death, since NO_CONST wasnijtmans2008-10-2217-1761/+1783
| | | | | | broken since 8.4 and no-one complained about it. FossilOrigin-Name: dc58eb7219d241ac91b3404382fe30280fced6a1
* * generic/tclProc.c: Reset -level and -code values to defaultsdgp2008-10-192-1/+11
| | | | | | after they are used. [Bug 2152286]. FossilOrigin-Name: a85f2f72a4249ef5bba5c7407b4b39618867988d
* Check syntax of [info coroutine] args, i.e. there are none.dkf2008-10-192-39/+39
| | | FossilOrigin-Name: 33628306b894bfac2882f8dea406229c1b1aeb7f
* Document [info coroutine].dkf2008-10-192-1/+10
| | | FossilOrigin-Name: 492d56fd9b3037f6750400cf46eab488e97d3379
* Improve documentation of [tcl::prefix].dkf2008-10-193-26/+36
| | | FossilOrigin-Name: 721748dd512d8d1c7029f876d17a15957548e17f
* fix missing "-Wl," prefix in HP-UX buildnijtmans2008-10-172-2/+2
| | | FossilOrigin-Name: f5b4b4305c687a639956c476c6922590ceb32a3a
* fix missing "-Wl," prefix in HP-UX buildnijtmans2008-10-172-2/+2
| | | FossilOrigin-Name: e59ea6fb6af5d76ac7e49823cc7198f85cbfc28b
* CONST -> constnijtmans2008-10-174-64/+70
| | | FossilOrigin-Name: 5f963f698b29fc74f40ef6e1b128cbaad042b4b7
* * generic/tclIORTrans.c (DeleteReflectedTransformMap): Removedandreas_kupries2008-10-172-5/+6
| | | | | | debug output in C++ comment. FossilOrigin-Name: 429cbd6df61fcedf4f8e0b3fe4b607205ee66c45
* * generic/tclCompile.h: Declare the internal tclInstructionTabledgp2008-10-176-12/+21
| | | | | | | | | | * generic/tclExecute.c: to simply be "const", not CONST86. * generic/tclCmdAH.c: whitespace. * generic/tclCmdIL.c: Uninitialized variable warning. * generic/tclTest.c: const correctness warning. FossilOrigin-Name: c9106a2d20ebc3544524b33efb8448bf5a107c5f
* Improve clarity of formatting.dkf2008-10-1799-281/+816
| | | FossilOrigin-Name: 71edbde46a8f75eec71181b2238ccd0b3c7c7849
* Add "const" to many internalnijtmans2008-10-1634-181/+217
| | | | | | | const tables. No functional or API change. FossilOrigin-Name: f03d2e2d83be42035c4aad3b01bbd09f5a967c1b
* * library/init.tcl: Revised [unknown] so that it carefullydgp2008-10-161-2/+5
| | | | | | | | preserves the state of the ::errorInfo and ::errorCode variables at the start of auto-loading and restores that state before the autoloaded command is evaluated. [Bug 2140628] FossilOrigin-Name: 91dbfe7baf489a897f6d6c2c6cfed60d26ce4010
* * library/init.tcl: Revised [unknown] so that it carefullydgp2008-10-162-3/+15
| | | | | | | | preserves the state of the ::errorInfo and ::errorCode variables at the start of auto-loading and restores that state before the autoloaded command is evaluated. [Bug 2140628] FossilOrigin-Name: a07bfdf2decff3999690388bafc7745e320072b8
* Lots of very minor formatting fixes.dkf2008-10-1542-67/+293
| | | FossilOrigin-Name: 4eecde7be6f379a7ca084fa3158e854c7e7ea95d
* Add "const" to many internalnijtmans2008-10-1514-166/+182
| | | | | | | | | | const tables, so those will be put by the C-compiler in the TEXT segment in stead of the DATA segment. This makes those table sharable in shared libraries. FossilOrigin-Name: 8fcbc25d98c79d16b8fb798cfe37aa513d5f5067
* * win/tclWinChan.c: Fix minor compiler warnings whennijtmans2008-10-146-37/+45
| | | | | | | | | * win/tclWinDde.c: compiling wit -Wwrite-strings * win/tclWinInit.c: * win/tclWinReg.c: * win/tclWinSerial.c: FossilOrigin-Name: ec7f443aa86627dbac9017f569b6c93e014c1eba
* * generic/tclCmdAH.c: Fix minor compiler warnings when compilingnijtmans2008-10-147-29/+39
| | | | | | | | | | * generic/tclCmdMZ.c: with -Wwrite-strings * generic/tclIndexObj.c: * generic/tclProc.c: * generic/tclStubLib.c: * generic/tclUtil.c: FossilOrigin-Name: 675e88f6494cc9ecd7a2b3c7560a836f3c38dc5b
* Fix a bit of formatting.dkf2008-10-142-2/+7
| | | FossilOrigin-Name: c710941ccdfd5c421c6c6c2aadb638b528ada5c9
* Use the environment variable for program files to find the html help compilerpatthoyts2008-10-141-4/+4
| | | FossilOrigin-Name: 4a43f5ab31f08fb82ad5d303648e39eaf4eb2d91
* * README: Bump version number to 8.6a4dgp2008-10-1410-16/+27
| | | | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure: FossilOrigin-Name: 3d9e72a73bb346ebec75981287e2be314392a1ad
* * generic/tclExecute.c: Fix compile warnings when --enable-symbols=all.dgp2008-10-143-8/+16
| | | | | | | * generic/tclCmdIL.c: Fix write to unallocated memory whenever [lrepeat] returns an empty list. FossilOrigin-Name: 06c13fc98b1ea94b1f5dcdd8bc1c26046811b297