summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * win/configure: define TCL_LIB_FLAG, TCL_BUILD_LIB_SPEC,hobbs2004-04-073-26/+55
| | | | * win/configure.in: TCL_LIB_SPEC, TCL_PACKAGE_PATH in tclConfig.sh.
* fix to comment (bug 931148)vincentdarley2004-04-071-4/+4
|
* Patch 922727 committed. Implements three changes:dgp2004-04-062-73/+0
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed):
* Patch 922727 committed. Implements three changes:dgp2004-04-0686-228/+142
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed):
* * tests/unixInit.test (unixInit-3.1): Default encoding on Darwindgp2004-04-062-2/+9
| | | | systems is utf-8. Thanks to Steven Abner (tauvan). [Bug 928808]
* root interacts badly with access(...,X_OK) [Bug 929892]dkf2004-04-062-2/+8
|
* add thanksdgp2004-04-021-1/+1
|
* * generic/tclCompile.c:Miguel Sofer2004-04-023-21/+29
| | | | | * generic/tclInt.h: removed the macro TCL_ALIGN() from tclInt.h, replaced by the static macro ALIGN() in tclCompile.c [Bug 926445]
* * generic/tclCompile.h: removed redundant #ifdef _TCLINTMiguel Sofer2004-04-022-3/+6
| | | | [Bug 928415], reported by tauvan.
* * tests/tcltest.test: Corrected constraint typos: "nonRoot" ->dgp2004-04-022-4/+9
| | | | "notRoot". [Bug 928353]
* * generic/tclInt.h: Removed obsolete tclBlockTime* declarations.dgp2004-04-012-3/+6
| | | | [Bug 926454]
* cross-filesystem boundary glob fixvincentdarley2004-04-012-2/+26
|
* date fixdgp2004-03-311-1/+1
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-312-11/+25
| | | | | | | | | | | | | | * library/msgcat/msgcat.tcl: Updated internals to make use of [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. [Patch 875055, RFE 811459] Corrected [mcset] to be able to successfully set a translation to the empty string. [mcset $loc $src {}] was incorrectly set the $loc translation of $src back to $src. Also changed [ConvertLocale] to minimally require a non-empty "language" part in the locale value. If not, an error raised prompts [Init] to keep looking for a valid locale value, or ultimately fall back on the "C" locale. [Bug 811461]. * library/msgcat/pkgIndex.tcl: Bump to msgcat 1.4.1.
* Add comment for TCL_TOKEN_EXPAND_WORD flagdgp2004-03-311-1/+6
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-312-3/+4
|
* * library/msgcat/msgcat.tcl: Updated internals to make use ofdgp2004-03-313-36/+61
| | | | | | | * library/msgcat/pkgIndex.tcl: [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. Also corrects bug to allow translation to an empty string. Bump to msgcat 1.4.1. [Patch 875055]
* More hash function cleaning up.dkf2004-03-303-10/+9
|
* Fixed object hashing bozo-ness. The code as it stood looked like adkf2004-03-302-28/+24
| | | | | cargo-cult hangover from the hashing code in tclHash.c, but this looks almost identical to that used for literals (which is fast.)
* * generic/tclExecute.c (TEBC): reverting to the previous methodMiguel Sofer2004-03-302-14/+42
| | | | | for async tests in TEBC, as the new method turned out to be too costly. Async tests now run every 64 instructions.
* * generic/tclCompile.c: New instruction code INST_START_CMDMiguel Sofer2004-03-307-42/+97
| | | | | | | | | * generic/tclCompile.h: that allows checking the bytecode's * generic/tclExecute.c: validity [Bug 729692] and the interp's * tests/interp.test (18.9): readyness [Bug 495830] before running * tests/proc.test (7.1): the command. It also changes the * tests/rename.test (6.1): mechanics of the async tests in TEBC, doing it now at command start instead of every 16 instructions.
* Corrected case: Filesystem.h -> FileSystem.hdgp2004-03-301-2/+2
|
* fix to glob with volume relative paths, bug 898238vincentdarley2004-03-305-8/+100
|
* fix to Tcl bug 918320vincentdarley2004-03-303-20/+45
|
* overlooked update to tests.dgp2004-03-292-6/+6
|
* * generic/tclMain.c (Tcl_Main, StdinProc): Append newline only todgp2004-03-292-17/+23
| | | | | incomplete scripts as part of multi-line script construction. Do not add an extra trailing newline to the complete script. [Bug 833150]
* Changelog fixMiguel Sofer2004-03-291-1/+1
|
* * generic/tclCompile.c (TclCompileScript): corrected possibleMiguel Sofer2004-03-292-3/+10
| | | | | segfault when a compilation returns TCL_OUTLINE_COMPILE after having grown the compile environment.
* * doc/array.n: added documentation for trace-realted behaviour ofMiguel Sofer2004-03-282-1/+9
| | | | 'array get' [Bug 449893]
* a bit more detail in the changes file about new package versionsdgp2004-03-261-1/+3
|
* * README: Bumped version number to 8.5a2 todgp2004-03-2610-16/+28
| | | | | | | | | | | * tools/tcl.wse.in: distinguish HEAD of CVS development * unix/configure.in: from the recent 8.5a1 release. * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.57 * win/configure:
* fixed another volume-relative file normalization problemvincentdarley2004-03-263-5/+28
|
* fix to windows volume-relative path normalizationvincentdarley2004-03-263-5/+40
|
* Silly bug found originally by Damon Courtney. [922752]dkf2004-03-243-3/+16
|
* Docfix. [Bug 921464]dkf2004-03-232-3/+8
|
* Added CONST to TclpGetTime declaration and `make genstubs`dgp2004-03-192-5/+6
|
* Include tclInt.h instead of tclPort.h to fix building on Solaris.rmax2004-03-191-2/+2
|
* Made HEAD build on Windows VC++ again.Kevin B Kenny2004-03-199-22/+40
|
* Fix breakage by making tclIntDecls.h #inc tclPort.h, as recommended by DGP.dkf2004-03-192-1/+8
|
* autoconf-2.57dgp2004-03-191-1/+1
|
* *** empty log message ***rmax2004-03-181-0/+17
|
* * unix/tcl.m4: Removed -Wno-strict-aliasing.rmax2004-03-181-1/+1
|
* * generic/tclIntDecls.h: Removed TclpTime_t. It wasn't really needed,rmax2004-03-182-16/+13
| | | | | | | | | | * generic/tclInt.h: but caused warnings related to * generic/tclInt.decls: strict aliasing with GCC 3.3. * generic/tclClock.c: * generic/tclDate.c: * generic/tclGetDate.y: * win/tclWinTime.c: * unix/tclUnixTime.c:
* * generic/tclNamesp.c: Added temporary pointer variables to workrmax2004-03-183-8/+19
| | | | | * generic/tclStubLib.c: around warnings related to * unix/tclUnixChan.c: strict aliasing with GCC 3.3.
* * generic/tclIntDecls.h: Removed TclpTime_t. It wasn't really needed,rmax2004-03-186-30/+23
| | | | | | | | | | * generic/tclInt.h: but caused warnings related to * generic/tclInt.decls: strict aliasing with GCC 3.3. * generic/tclClock.c: * generic/tclDate.c: * generic/tclGetDate.y: * win/tclWinTime.c: * unix/tclUnixTime.c:
* Reverted changes to tcltest so that it can still support Mac whendgp2004-03-173-4/+8
| | | | copied to Mac systems (only requires Tcl 8.3).
* Removed support for Mac OS Classic platform [Patch 918142]das2004-03-171-5/+1
|
* Removed support for Mac OS Classic platform [Patch 918142]das2004-03-17140-33468/+433
|
* Slightly better docs for [lsearch]'s advanced capabilitiesdkf2004-03-172-1/+16
|
* * doc/catch.n: Compiled [catch] no longer fails to catch syntaxdgp2004-03-163-22/+10
| | | | | errors. Removed the claims in the documentation that it does. * doc/return.n: Updated example to use [dict merge].