summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * unix/Makefile.in: Add comments to better describemdejong2001-11-253-9/+24
| | | | | | | | 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-253-4/+11
| | | | | | * 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/configure: regeneddas2001-11-231-2/+1
|
* *unix/Makefile.in:das2001-11-238-64/+102
| | | | | | | | | | *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-2342-1547/+668
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-232-2944/+7826
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-2318-82/+284
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details
* another fix for test trace-8.8dgp2001-11-211-1/+2
|
* * corrected test trace-8.8 for Bug 219393dgp2001-11-212-2/+4
|
* * generic/tclBasic.c (Tcl_DeleteCommandFromToken,CallCommandTraces):dgp2001-11-213-4/+16
| | | | | | | * 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]
* addition of GetTime.3 Tcl_GetTime doc to mkLinkshobbs2001-11-211-0/+4
|
* convert to DOS eol formathobbs2001-11-211-2376/+2377
|
* added TIP#73 patch #483500 from Kevin Kenny.hobbs2001-11-2123-76/+210
| | | | This deprecates TclpGetTime in favor of new Tcl_GetTime.
* moving all code relative to bytecodes from tclBasic.c to tclExecute.cMiguel Sofer2001-11-204-438/+508
|
* correction in the Changelog entry.Miguel Sofer2001-11-201-2/+2
|
* code reorganisation and factorisation.Miguel Sofer2001-11-204-99/+115
|
* a better variant of the previous-to-last commit (restoring numLevels ↵Miguel Sofer2001-11-203-22/+20
| | | | computations)
* committing unix/configure after running autoconf.dgp2001-11-201-2/+1
| | | | A version with extra debug echos got committed by mistake.
* missing variable declaration under TCL_COMPILE_DEBUG.Miguel Sofer2001-11-202-2/+9
|
* restoring the computations of iPtr->numLevels to the original logic ↵Miguel Sofer2001-11-203-13/+13
| | | | (previous to buggy modifs on 2001-11-16).
* * tools/eolFix.tcl (new-file):hobbs2001-11-202-1/+83
| | | | | * unix/Makefile.in: added EOL correction for Windows bat files to dist target. [Bug #219409] (davygrvy)
* * unix/tclUnixInit.c (TclpSetInitialEncodings): update of patchhobbs2001-11-202-110/+154
| | | | | | | | 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
|
* Added useful comments.davygrvy2001-11-201-7/+14
|
* * tests/compile.test: added a test for bug [Bug 483309]Miguel Sofer2001-11-192-1/+18
|
* win fs fixesvincentdarley2001-11-197-160/+424
|
* 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-193-907/+916
|
* Changes due to TIP#68; memory handling in variable traces is now correct!dkf2001-11-196-83/+337
|
* patch for [Bug 483309]Miguel Sofer2001-11-192-1/+6
|
* added hpux nl_langinfo alias fallbackshobbs2001-11-172-2/+22
|
* adjusted HAVE_LANGINFO to allow for fallback table, added gb2312-1980 alias ↵hobbs2001-11-161-6/+21
| | | | for gb2312
* * tests/interp.test:hobbs2001-11-163-11/+37
| | | | | * 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-162-2/+6
|
* * unix/tclUnixInit.c: added HAVE_LANGINFO code block.hobbs2001-11-165-312/+512
| | | | | | | | | | | * 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-164-424/+438
| | | | to tclObj.c
* Code reordering; execution levels made consistent [Bug 480896].Miguel Sofer2001-11-167-237/+127
|
* no messagedavygrvy2001-11-151-0/+8
|
* * win/makefile.vc:davygrvy2001-11-153-36/+43
| | | | | | | * win/rules.vc: Small bug fixes. * win/README: added some docs pointing to the docs in makefile.vc for it's use.
* minor doc comment fixeshobbs2001-11-1411-24/+27
|
* Reference implementation of TIP's #22, #33 and #45. Adds thehobbs2001-11-1416-134/+1809
| | | | | | ability of the [lindex] command to have multiple index arguments, and adds the [lset] command. Both commands are byte-code compiled. [Patch #471874] (work by Kenny, commited by Hobbs)
* added lset tests and updated lindex tests for TIPs#22,33,45 by Kennyhobbs2001-11-146-70/+1392
|
* added lset.n lset docs with xref and updated lindex of TIPs#22,33,45 by Kennyhobbs2001-11-1410-27/+219
|
* * win/buildall.vc.bat(new):davygrvy2001-11-132-5/+30
| | | | | | * win/makefile.vc: Small fix with deriving the "OriginalFilename" string in the .rc scripts. Added a quick batchfile for building the entire thing.
* no messagedavygrvy2001-11-131-0/+7
|
* correct nroff format problemshobbs2001-11-125-10/+16
|
* * unix/Makefile.in:mdejong2001-11-113-2/+23
| | | | | * win/Makefile.in: Add "make gdb" target. This target can run tclsh inside either gdb or insight.
* no messagedavygrvy2001-11-101-0/+9
|
* * win/makefile.vc: Added a check to make sure one runs the makefiledavygrvy2001-11-103-52/+31
| | | | | | | | from the /win directory only. * win/mkd.bat: * win/rmd.bat: Changes from Llyod Lim for better stability. [Patch #456759]