summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * 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.
* fix typo: s/ZoneinfoFile/LoadZoneinfoFile/das2008-11-011-2/+2
|
* Version bump of TclOOdkf2008-11-013-4/+8
|
* remove unused variabledkf2008-11-011-2/+1
|
* Fix [Bug 2200824] and make class constructor error handling much more robust.dkf2008-10-316-58/+233
|
* CONSTify TclDTraceInfonijtmans2008-10-281-1/+1
| | | | Eliminate some -Wstrings-write warnings
* CONSTify TclDTraceInfonijtmans2008-10-286-42/+50
| | | | Eliminate some -Wstrings-write warnings
* * 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 ***
* Style improvements - invoking callbacks without visual junk.dkf2008-10-262-10/+10
|
* Style improvements - invoking callbacks without visual junk.dkf2008-10-2638-1136/+1132
|
* Style improvements - invoking callbacks without visual junk.dkf2008-10-267-24/+24
|
* Removed a rogue ^M from the end of a linepatthoyts2008-10-241-2/+2
|
* 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*.
* 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
* * generic/tclCmdAH.c (ForNextCallback): handle TCL_CONTINUE inMiguel Sofer2008-10-232-2/+7
| | | | the for body [Bug 2186888].
* 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.
* * generic/tclProc.c: Reset -level and -code values to defaultsdgp2008-10-192-1/+11
| | | | after they are used. [Bug 2152286].
* Check syntax of [info coroutine] args, i.e. there are none.dkf2008-10-192-39/+39
|
* Document [info coroutine].dkf2008-10-192-1/+10
|
* Improve documentation of [tcl::prefix].dkf2008-10-193-26/+36
|
* fix missing "-Wl," prefix in HP-UX buildnijtmans2008-10-172-2/+2
|
* fix missing "-Wl," prefix in HP-UX buildnijtmans2008-10-172-2/+2
|
* CONST -> constnijtmans2008-10-174-64/+70
|
* * generic/tclIORTrans.c (DeleteReflectedTransformMap): Removedandreas_kupries2008-10-172-5/+6
| | | | debug output in C++ comment.
* * 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.
* Improve clarity of formatting.dkf2008-10-1799-281/+816
|
* Add "const" to many internalnijtmans2008-10-1634-181/+217
| | | | | const tables. No functional or API change.
* * 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]
* * 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]
* Lots of very minor formatting fixes.dkf2008-10-1542-67/+293
|
* 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.
* * 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:
* * 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:
* Fix a bit of formatting.dkf2008-10-142-2/+7
|
* Use the environment variable for program files to find the html help compilerpatthoyts2008-10-141-4/+4
|
* * 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:
* * 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.
* Fix test flaws exposed by -singleproc 1 -debug 1dgp2008-10-144-10/+11
|
* Make safe-7.2 more robust to different environmentsdgp2008-10-141-2/+2
|
* oopsdgp2008-10-141-2/+2
|
* add missing constraintsdgp2008-10-143-6/+8
|
* Made documentation *even more* clear...dkf2008-10-143-53/+61
|
* We need to initialize the thread id variable to 0 as on 64 bit windowspatthoyts2008-10-132-1/+11
| | | | | | this is a pointer sized field while windows only fills it with a 32 bit value. The result is an inability to join the threads as the ids cannot be matched.
* set array of Tcl_Obj's to the right size.patthoyts2008-10-132-2/+6
|
* Handle error case [info class destructor].dkf2008-10-132-1/+7
|
* Added magic for Objective C. [Bug 2163447]dkf2008-10-132-1/+21
|
* * generic/tclCompile.c: fix bug in srcDelta encoding withinMiguel Sofer2008-10-122-3/+10
| | | | | | ByteCodes. The bug can only be triggered under conditions that cannot happen in Tcl, but were met during development of L. Thanks go to Robert Netzer for diagnose and fix.
* typocore_8_6_a3dgp2008-10-101-2/+2
|
* *** 8.6a3 TAGGED FOR RELEASE ***dgp2008-10-102-7/+88
| | | | * changes: Updates for 8.6a3 release.
* Fix [Bug 2155658]dkf2008-10-103-47/+82
|