summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclBasic.c: Save and restore the iPtr->flag bits thatdgp2003-10-081-0/+8
| | | | | | | control the state of errorCode and errorInfo management when calling "leave" execution traces, so that all error information of the traced command is still available whether traced or not. [Bug 760947] Thanks to Yahalom Emet.
* Made Tcl_NumUtfChars do the right thing with \u0000 when guessing the lengthdkf2003-10-081-0/+8
| | | | because of a negative 'length' parameter. [Bug 769812]
* * tests/cmdAH.test:dgp2003-10-071-2/+9
| | | | | | | | | | | * tests/exec.test: Corrected temporary file management * tests/fileSystem.test: issues uncovered by -debug 1 test * tests/io.test: operations. Also backported some * tests/ioCmd.test: other fixes from the HEAD. * tests/main.test: * tests/pid.test: [Bugs 675605, 675655, 675659] * tests/socket.test: * tests/source.test:
* * tests/pid.test: Corrected temporary file management issuesdgp2003-10-071-0/+3
| | | | uncovered by -debug 1 test operations. [Bug 675655]
* * tests/fCmd.test: Run tests with the [temporaryDirectory] asdgp2003-10-071-0/+4
| | | | | the current directory, so that tests can depend on ability to write files. [Bug 575837]
* * doc/OpenFileChnl.3: Updated Tcl_Tell and Tcl_Seek documentationdgp2003-10-071-0/+3
| | | | to reflect that they now return Tcl_WideInt (TIP 72) [Bug 787537]
* * tests/io.test: Corrected several tests that failed when pathsdgp2003-10-071-0/+5
| | | | * tests/ioCmd.test: included regexp-special chars. [Bug 775394]
* * tests/regexp.test: Matched [makeFile] with [removeFile].dgp2003-10-071-0/+3
| | | | * tests/regexpComp.test: [Bug 675652]
* * win/configure:hobbs2003-10-061-0/+7
| | | | | | * win/tcl.m4: removed incorrect checks for existence of optimization. TCL_CFG_OPTIMIZED is now defined whenever the user does not build with --enable-symbols.
* * tests/fCmd.test (fCmd-8.2): Test only that tilde-substitutiondgp2003-10-061-0/+3
| | | | happens, not for any particular result. [Bug 685991]
* * unix/tcl.m4 (SC_PATH_TCLCONFIG): Corrected search path sodgp2003-10-061-0/+3
| | | | that alpha and beta releases of Tcl are not favored. [Bug 608698]
* * tests/reg.test: Corrected duplicate test names.dgp2003-10-061-0/+14
| | | | | | | | | | | | | * 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:
* fix for [Bug 816641] - faulty execution and catch stack management.Miguel Sofer2003-10-041-0/+6
|
* * generic/tclBasic.c: Fixed error in ref count management of commanddgp2003-10-031-0/+6
| | | | | * generic/tclCmdMZ.c: and execution traces that caused access to freed memory in trace-32.1. [Bug 811483].
* * generic/tclTrace.c: Corrected comingling of introspection results ofdgp2003-10-021-0/+6
| | | | | [trace info command] and [trace info execution]. [Bug 807243] Thanks to Mark Saye.
* * macosx/Makefile: fixed redo prebinding bug when DESTDIR="".das2003-10-011-0/+5
| | | | * mac/tclMacResource.c: fixed possible NULL dereference (bdesgraupes).
* fixed inconsistent handling of file separators in file joinvincentdarley2003-09-301-0/+6
|
* Symbols which are visible outside a single compilation unit must havedkf2003-09-291-0/+5
| | | | | the prefix 'Tcl' to keep them out of the way of non-Tcl C code on Unix. (Problem reported by George Staplin.)
* TIP#121 (app exit proc API) implementation from Joe Mistachkindkf2003-09-291-0/+7
|
* TIP#112 ([namespace ensemble] command) implementation.dkf2003-09-291-0/+14
|
* Correctly check the types of boolean options to http::geturl [Bug 811170]dkf2003-09-291-0/+3
|
* Added note that frameworks are a MacOSX feature [Bug 619440]dkf2003-09-291-0/+5
|
* no messagedavygrvy2003-09-281-0/+7
|
* * macosx/Makefile: ensure SYMROOT exists if OBJROOT is overriddendas2003-09-251-0/+5
| | | | on command line. Replaced explict use of /usr/bin by ${BINDIR}.
* package unknown performance on MacOS and MacOS Xvincentdarley2003-09-241-0/+7
|
* trace.test remove knownBugvincentdarley2003-09-241-0/+5
|
* * tests/trace.test (trace-31,32-*): Added tests for [Bug 807243]dgp2003-09-241-0/+3
| | | | and [Bug 811483].
* * generic/tclExecute.c:Miguel Sofer2003-09-231-0/+7
| | | | | | * generic/tclInt.h: changed the evaluation-stack addressing mode, from array-style to pointer-style; the catch stack and evaluation stack are now contiguous in memory. [Patch 457449]
* * library/init.tcl (auto_load, auto_import): Expanded Eric Melski'sdgp2003-09-231-0/+7
| | | | | | 2000-01-28 fix for [Bug 218871] to all potentially troubled uses of [info commands] on input data, where glob-special characters could cause problems.
* Stop failure of expr-23.4 on 64bit architectures. [Bug 808244]dkf2003-09-191-0/+6
|
* * generic/tclExecute.c: adding (DE)CACHE_STACK_INFO() pairs to protect all ↵Miguel Sofer2003-09-191-1/+7
| | | | | | calls that may cause traces on ::errorInfo or ::errorCode to corrupt the stack [Bug 804681] ----------------------------------------------------------------------
* fileName test suite bug fixvincentdarley2003-09-181-0/+6
|
* test suite fix for AFSvincentdarley2003-09-161-0/+1
|
* minor filesystem bug fixesvincentdarley2003-09-161-0/+8
|
* TIP#123 Implementation based on work by Arjen Markus. [Patch 655176]dkf2003-09-121-0/+14
|
* * library/opt/optparse.tcl: Latest revisions caused [OptGuessType]dgp2003-09-101-0/+7
| | | | | | to guess "int" instead of "string" for empty strings. Missed the required "-strict" option to [string is]. Thanks to Revar Desmera. [Bug 803968]
* no messagedavygrvy2003-09-081-1/+9
|
* credit updatedgp2003-09-081-1/+1
|
* one more bit of TIP 137 documentation...dgp2003-09-051-1/+2
|
* * doc/FileSystem.3: Implementation ofdgp2003-09-051-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/source.n: TIPs 137/151. Adds * doc/tclsh.1: a -encoding option to * generic/tcl.decls: the [source] command * generic/tclCmdMZ.c (Tcl_SourceObjCmd): and a new C routine, * generic/tclIOUtil.c (Tcl_FSEvalFileEx): Tcl_FSEvalFileEx(), * generic/tclMain.c (Tcl_Main): that provides C access * mac/tclMacResource.c (Tcl_MacSourceObjCmd): to the same function. * tests/cmdMZ.test: Also adds command line * tests/main.test: option handling in Tcl_Main() so that tclsh * tests/source.test: and other apps built on Tcl_Main() respect a -encoding command line option before a script filename. Docs and tests updated as well. [Patch 742683] This is a ***POTENTIAL INCOMPATIBILITY*** only for those C programs that embed Tcl, build on Tcl_Main(), and make use of Tcl_Main's former ability to pass a leading "-encoding" option to interactive shell operations. * generic/tclInt.decls: Added internal stub * generic/tclMain.c (Tcl*StartupScript*): table entries for two new functions Tcl_SetStartupScript() and Tcl_GetStartupScript() that set/get the path and encoding for the startup script to be evaluated by either Tcl_Main() or Tk_Main(). Given public names in anticipation of their exposure by a followup TIP. * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c:
* * doc/SplitList.3: Implementation of TIP 148. Fixes [Bug 489537].dgp2003-09-041-0/+11
| | | | | | | | | | * generic/tcl.h: Updated Tcl_ConvertCountedElement() to quote * generic/tclUtil.c: the leading "#" character of all list elements unless the TCL_DONT_QUOTE_HASH flag is passed in. * generic/tclDictObj.c: Updated Tcl_ConvertCountedElement() callers * generic/tclListObj.c: to pass in the TCL_DONT_QUOTE_HASH flags * generic/tclResult.c: when appropriate.
* * doc/return.n: Updated [return] docs to cover new TIP 90 features.dgp2003-09-021-0/+7
| | | | | * doc/break.n: Added SEE ALSO references to return.n * doc/continue.n:
* Documentation of TIP#139 API functions.dkf2003-08-311-0/+5
|
* Updated [catch] docs to cover new TIP 90 features.dgp2003-08-311-0/+4
|
* Whitespace police.dkf2003-08-301-4/+4
|
* * generic/tclCmdAH.c: Corrected bug in TIP 90 implementationdgp2003-08-291-0/+7
| | | | | | * tests/cmdMZ.test: where the default -errorcode NONE value was not copied into the return options dictionary. This correction modified one test result.
* no messagedavygrvy2003-08-271-2/+3
|
* * generic/tclUtil.c: Corrected [Bug 411825] and other bugs indgp2003-08-271-2/+4
| | | | | | TclNeedSpace() where non-breaking space (\u00A0) and backslash-escaped spaces were handled incorrectly. * tests/util.test: Added new tests util-8.[2-6].
* no messagedavygrvy2003-08-271-0/+14
|
* no messagedavygrvy2003-08-271-0/+3
|