summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1999-08-18 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-1911-472/+436
| | | | | | | | | | | | | * library/auto.tcl: * library/init.tcl: * library/ldAout.tcl: * library/package.tcl: * library/safe.tcl: * library/word.tcl: * library/http2.1/http.tcl: * library/msgcat1.0/msgcat.tcl: updated libraries to better Tcl style guide (no more string comparisons with == or !=, spacing changes).
* 1999-08-18 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-1911-33/+81
| | | | | | | | | | | | | | * doc/OpenFileChnl.3: * doc/file.n: * tests/cmdAH.test: * tclIO.c: * tclCmdAH.c: added "file channels ?pattern?" tcl command, with associated Tcl_GetChannelNames and Tcl_GetChannelNamesEx public C APIs (added to tcl.decls as well), with docs and tests. * generic/tclCompile.c: add TCL_TOKEN_VARIABLE to the part types that cause differed compilation for exprs, to correct the expr double-evaluation problem for vars. Added test cases.
* 1999-08-18 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-193-12/+37
| | | | | | | | | | | | * doc/Eval.3: fixed doc on input args [Bug: 2114] * doc/OpenFileChnl.3: * doc/file.n: * tests/cmdAH.test: * tclIO.c: * tclCmdAH.c: added "file channels ?pattern?" tcl command, with associated Tcl_GetChannelNames and Tcl_GetChannelNamesEx public C APIs (added to tcl.decls as well), with docs and tests.
* 1999-08-18 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-191-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/Eval.3: fixed doc on input args [Bug: 2114] * doc/OpenFileChnl.3: * doc/file.n: * tests/cmdAH.test: * tclIO.c: * tclCmdAH.c: added "file channels ?pattern?" tcl command, with associated Tcl_GetChannelNames and Tcl_GetChannelNamesEx public C APIs (added to tcl.decls as well), with docs and tests. * tests/expr.test: * generic/tclCompile.c: add TCL_TOKEN_VARIABLE to the part types that cause differed compilation for exprs, to correct the expr double-evaluation problem for vars. Added test cases. * unix/Makefile.in: changed the dependency structure so that install-* is dependent on * (ie - install-binaries is dependent on binaries). * library/auto.tcl: * library/init.tcl: * library/ldAout.tcl: * library/package.tcl: * library/safe.tcl: * library/word.tcl: * library/http2.1/http.tcl: * library/msgcat1.0/msgcat.tcl: updated libraries to better Tcl style guide (no more string comparisons with == or !=, spacing changes).
* typojenn1999-08-171-2/+2
|
* Update copyrights and add my name to Ray's in the credits (blush).jingham1999-08-162-3/+4
|
* Update the copyrights.jingham1999-08-161-3/+3
|
* Update copyrights and add my name to Ray's in the credits (blush).jingham1999-08-161-4/+4
|
* If you are running the testsuite, set the Stack size to 768K so you can pass ↵jingham1999-08-161-3/+16
| | | | the regexp tests. For most sane regexps, however 512K is fine.
* Update copyrights and add my name to Ray's in the credits (blush).jingham1999-08-161-4/+4
|
* Change the permissions for opening resource files to Shared. Suprisingly ↵jingham1999-08-151-3/+3
| | | | enough, this is the only way to get notification if you have opened the file twice...
* Note Stack space increase needed for complex patterns with many ↵jingham1999-08-151-1/+6
| | | | subexpressions in Tcl8.2 regexp package.
* Require Tcl 8.2jingham1999-08-151-2/+2
|
* Typo in commentjingham1999-08-151-2/+2
|
* Minor tweaks to get these pages through the HTML converterscriptics_tclpro_1_3_0core_8_2_0welch1999-08-133-13/+9
|
* Updated to handle more special backslash sequences foundwelch1999-08-131-1/+2
| | | | in re_syntax.n
* Release 8.2.0.redman1999-08-131-1/+10
|
* Fixed bad function definition, should use void instead of VOID forredman1999-08-131-2/+2
| | | | return type (does not return "void *").
* Fixed type, USE_TCL_ALLOC should be USE_TCLALLOCredman1999-08-131-2/+2
|
* Update to move the build directory out of the source tree.jingham1999-08-131-1/+1
|
* *** empty log message ***jingham1999-08-131-0/+5
|
* *** empty log message ***stanton1999-08-121-0/+10
|
* * win/Makefile.in: Added COMPILE_DEBUG_FLAGS macro to make itstanton1999-08-123-14/+37
| | | | | | | | | easier to turn on compiler tracing. * tests/parse.test: * generic/tclParse.c: Fixed bug in Tcl_EvalEx where the termOffset was not being updated in cases where the evaluation returned a non TCL_OK error code. [Bug: 2535]
* tclConfig.sh is now installed for windowswart1999-08-121-1/+2
|
* Applied patch to remove compiler warning.redman1999-08-122-47/+53
|
* Added definition for STLIB_LDwart1999-08-112-0/+2
|
* Added substitution for STLIB_LD, the static linker.wart1999-08-111-1/+2
|
* Include the unix/aclocal.m4 file in the distribution.redman1999-08-111-1/+2
|
* Change version numbers to 8.2.0redman1999-08-106-17/+17
|
* Rolled back changes to change the prototype ofredman1999-08-105-15/+36
| | | | Tcl_ListObjGetElements()
* * generic/tclListObj.c:core_8_2_b3_baseredman1999-08-109-82/+91
| | | | | | | | | | | | | | | | * generic/tcl.decls: * generic/tclDecls.h: Applied patch from Jim Ingham to change the prototype of Tcl_ListObjGetElements to have the last argument have a CONST so that you can feed it the objv that you get from the standard TclObj command proc. * generic/tclAlloc.c: * generic/tclCmdIL.c: * generic/tclIO.c: * generic/tclThread.c: * win/tclWinThrd.c: * unix/tclUnixThrd.c: Fixed Brent's changes so that they work on Windows (and he fixed the bug in the Unix thread implementation).
* Fixed level of indirection in Tcl_GetAllocMutexwelch1999-08-101-1/+2
|
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-103-5/+22
| | | | | | * tests/string.test: added largest_int proc to adapt for >32 bit machines and int overflow testing. * tests/tcltest.test: fixed minor error in 8.2 result (from dgp)
* Move Mark Roseman's fix for slow connections from Tcl 8.0 to Tcl 8.2.jingham1999-08-101-2/+30
|
* Trivial cleanup - Windows -> Macintosh in comments.jingham1999-08-101-3/+3
|
* Convert the directory name from Utf to External before passing it to the ↵jingham1999-08-101-4/+7
| | | | Toolbox.
* Added Tcl_GetAllocMutex for use by tclAlloc.c and tclCkalloc.cwelch1999-08-103-50/+75
|
* 1 Added use of Tcl_GetAllocMutex to tclAlloc.c and tclCkalloc.c so theywelch1999-08-1010-56/+225
| | | | | | | | can be linked against alternate thread packages. 2 Added Tcl_GetChannelNames to tclIO.c 3 Added TclVarTraceExists hook so "info exists" triggers read traces exactly like it did in Tcl 7.6 4 Stubs table changes to reflect new internal and external APIs
* Updated change log for my aolserver-related changeswelch1999-08-101-1/+17
|
* removed unreferenced variable from regcomp.credman1999-08-101-1/+0
|
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-091-8/+10
| | | | | * library/init.tcl: fixed path handling in auto_execok (it could miss including the normal path on some Windows machines) [Bug: 1276]
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-096-18/+21
| | | | | | | | | * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042]
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-091-2/+13
| | | | | | | | | | | * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042] * library/init.tcl: fixed path handling in auto_execok (it could miss including the normal path on some Windows machines) [Bug: 1276]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-053-6/+9
| | | | | * library/http2.1/http.tcl: Made use of "i" in init section not use global var and start at 0 (was 1). [Bug: 2502]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-3/+6
| | | | | * generic/tclLiteral.c: fixed reference to bytes that might not be null terminated (using objPtr->bytes, which is) [Bug: 2496]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-13/+13
| | | | | * doc/tclvars.n: Made it clear that tcl_pkgPath was not set for Windows (already mentioned in init.tcl) [Bug: 2455]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-0/+9
| | | | | | | | | * doc/tclvars.n: Made it clear that tcl_pkgPath was not set for Windows (already mentioned in init.tcl) [Bug: 2455] * generic/tclLiteral.c: fixed reference to bytes that might not be null terminated (using objPtr->bytes, which is) [Bug: 2496] * library/http2.1/http.tcl: Made use of "i" in init section not use global var. [Bug: 2502]
* Declare the tclStubs table so we can use it to swap out Tcl_SetTimer and ↵jingham1999-08-051-1/+8
| | | | Tcl_WaitForEvent in this file.
* *** empty log message ***stanton1999-08-051-0/+13
|
* * tests/reg.test: Added test for REG_EXPECT bug fixed by Henry'sstanton1999-08-051-1/+2
| | | | patch.