summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclIO.c (Tcl_GetsObj): Applied patch for bug #491341 asandreas_kupries2001-12-121-7/+13
| | | | | provided by Don Porter <dgp@users.sourceforge.net>. Fixes assumption of having an empty Tcl_Obj to work with.
* small change in bytecode instructionsINST_LIST_INDEX_MULTI and INST_LSET_FLATMiguel Sofer2001-12-111-0/+11
|
* fix debug messages in INST_LSET_LIST.Miguel Sofer2001-12-111-0/+4
|
* removed overestimates of necessary stack depth for bytecodes in theMiguel Sofer2001-12-111-0/+7
| | | | fix for [Bug 483611].
* * unix/tclUnixPipe.c (TclpCreateProcess): Applied Don Porter'sandreas_kupries2001-12-111-0/+5
| | | | patch fixing bug #437489.
* fix background error reporting in the absence of a bgerror proc [Bug 219142].Miguel Sofer2001-12-101-0/+6
|
* * Several typo and formatting corrections discovereddgp2001-12-101-2/+18
| | | | during conversion to TMML. Thanks to Joe English. [Patch 490514]
* fixed the calculation of the maximal stack depth required by bytecodes [Bug ↵Miguel Sofer2001-12-101-0/+11
| | | | 483611].
* restored consistency in refCount accounting by array traces [Bug #4484339]Miguel Sofer2001-12-071-0/+6
|
* More expr syntax error improvementsdkf2001-12-061-0/+11
|
* new algorithm for [array get], safe when there are traces that modify the ↵Miguel Sofer2001-12-051-0/+6
| | | | array [Bug #449893].
* Improved messages produced on getting a syntax error in an expressiondkf2001-12-041-0/+15
|
* Improved expr documentation.dkf2001-12-031-0/+6
|
* no messagedavygrvy2001-12-031-0/+7
|
* Tcl_Preserve'ing VarTrace structures to avoid memory corruption [Bug: 484334]Miguel Sofer2001-11-301-0/+5
|
* Modified test namespace-41.2, added 41.3Miguel Sofer2001-11-291-0/+5
|
* added new test for bug 231259Miguel Sofer2001-11-291-0/+5
|
* * generic/tclBinary.c: Added caching scheme to reduce number of objectdkf2001-11-291-0/+9
| | | | allocations when doing scans of large repetitive binary strings.
* Manpage fix (RE syntax now in separate page.)dkf2001-11-281-0/+5
| | | | Resolves Bug486159 reported by Larry Virden.
* Fix a coredump in the filename normalizer code for Win95/98.drh2001-11-281-0/+5
|
* no messagedavygrvy2001-11-281-0/+6
|
* Made test cmdAH-24.2 more robust.dkf2001-11-271-0/+4
|
* Tightened up the argument passing for [switch] to promote robuster scripts.dkf2001-11-271-0/+10
|
* * generic/tclIntPlatDecls.h: 'make genstubs' after changesdgp2001-11-261-0/+5
| | | | in 2001-11-23 commit from Daniel Steffen.
* * unix/Makefile.in: Add comments to better describemdejong2001-11-251-0/+9
| | | | | | | | TCL_EXE and when it should be available. * win/Makefile.in: Add TCL_EXE variable to be used by rules like `make genstubs`. Don't set TCL_LIBRARY before running `make genstubs` since we will be running with a tclsh from the PATH not the one we build.
* * win/configure: Regen.mdejong2001-11-251-0/+7
| | | | | | * win/tcl.m4 (SC_CONFIG_CFLAGS): Add comctl32.lib to wish link libs. This change was originally added to Tk on 2001-11-09 but was not committed to Tcl.
* Fixed up some non-standard ChangeLog entries which did notmdejong2001-11-251-23/+23
| | | | parse correctly.
* *unix/Makefile.in:das2001-11-231-0/+11
| | | | | | | | | | *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)
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-231-0/+207
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details
* * corrected test trace-8.8 for Bug 219393dgp2001-11-211-0/+2
|
* * generic/tclBasic.c (Tcl_DeleteCommandFromToken,CallCommandTraces):dgp2001-11-211-0/+8
| | | | | | | * generic/tclCmdMZ>c (Tcl_UntraceCommand): Added Tcl_Preserve and Tcl_Release calls to prevent deletion of CommandTrace structures until all callers are done using them, preventing memory corruption. [Bug 453805]
* added TIP#73 patch #483500 from Kevin Kenny.hobbs2001-11-211-0/+39
| | | | This deprecates TclpGetTime in favor of new Tcl_GetTime.
* moving all code relative to bytecodes from tclBasic.c to tclExecute.cMiguel Sofer2001-11-201-0/+12
|
* correction in the Changelog entry.Miguel Sofer2001-11-201-2/+2
|
* code reorganisation and factorisation.Miguel Sofer2001-11-201-0/+10
|
* a better variant of the previous-to-last commit (restoring numLevels ↵Miguel Sofer2001-11-201-0/+7
| | | | computations)
* missing variable declaration under TCL_COMPILE_DEBUG.Miguel Sofer2001-11-201-0/+5
|
* restoring the computations of iPtr->numLevels to the original logic ↵Miguel Sofer2001-11-201-1/+7
| | | | (previous to buggy modifs on 2001-11-16).
* * unix/tclUnixInit.c (TclpSetInitialEncodings): update of patchhobbs2001-11-201-3/+11
| | | | | | | | from 2001-11-16 that uses the old Tcl encoding check mechanism as a fallback to the original. Also added a TCL_DEFAULT_ENCODING #define (defaults to iso8859-1). Tcl will first try setlocale and nl_langinfo, and if that fails, guess based on certain LANG|LC_* env vars. [Patch #418645]
* no messagedavygrvy2001-11-201-0/+4
|
* * tests/compile.test: added a test for bug [Bug 483309]Miguel Sofer2001-11-191-0/+4
|
* win fs fixesvincentdarley2001-11-191-0/+11
|
* correcting erroneous date in Changelog.Miguel Sofer2001-11-191-1/+1
|
* Code reorganisation: moving all eval functions from tclParse.c to tclBasic.cMiguel Sofer2001-11-191-0/+11
|
* Changes due to TIP#68; memory handling in variable traces is now correct!dkf2001-11-191-0/+36
|
* patch for [Bug 483309]Miguel Sofer2001-11-191-0/+4
|
* * tests/interp.test:hobbs2001-11-161-0/+5
| | | | | * generic/tclInterp.c (SlaveObjCmd): Corrected argument checking for '$interp alias|aliases|issafe'. [Patch #479560] (thoyts, hobbs)
* Removed a rogue C++ comment that inadvertently got left in tclListObj.cKevin B Kenny2001-11-161-0/+4
|
* * unix/tclUnixInit.c: added HAVE_LANGINFO code block.hobbs2001-11-161-0/+12
| | | | | | | | | | | * unix/configure: regened * unix/configure.in: added SC_ENABLE_LANGINFO call * unix/tcl.m4: made SHLIB_LD_LIBS='${LIBS}' for FreeBSD* (meyer) Added modified version of Wagner patch to make use of nl_langinfo where possible to determine Unix platform encoding, instead of the inflexible built-in system. This is used by default when possible, and can be disabled with --enable-langinfo=no. [Patch #418645] (hobbs, wagner)
* Moved Tcl_GetCommandFromObj and all defining code for tclCmdNameType objects ↵Miguel Sofer2001-11-161-0/+9
| | | | to tclObj.c