summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclInt.decls: commented-out entry fordavygrvy2003-12-154-17/+17
| | | | | | TclpCheckStackSpace, removing it from the Stubs table. It's already declared in tclInt.h and labeled as a function that is not to be exported. Regened tables.
* TIP#75 Implementationdkf2003-12-144-22/+305
|
* Stop warnings due to (annoying) C type promotion rules.dkf2003-12-141-6/+5
|
* rewrite of file normalizationvincentdarley2003-12-142-84/+226
|
* prefer Tcl_LongAsWide and Tcl_WideAsLong for casts.davygrvy2003-12-131-5/+5
|
* no messagedavygrvy2003-12-131-1/+8
|
* Win32's SetFilePointer() takes LONGs not DWORDs. Redid local varsdavygrvy2003-12-131-11/+11
| | | | to avoid all casting except where truly required.
* better filesystem tests with more informative resultsvincentdarley2003-12-121-8/+16
|
* various filesystem fixesvincentdarley2003-12-121-0/+21
|
* allow creation of relative linksvincentdarley2003-12-122-5/+26
|
* new filesystem testsvincentdarley2003-12-122-3/+124
|
* file normalize ~nobody fixvincentdarley2003-12-121-1/+4
|
* improved filesystem documentationvincentdarley2003-12-123-44/+55
|
* no messagedavygrvy2003-12-121-0/+7
|
* (SocketThreadExitHandler) : added a TerminateThread fallback just in casedavygrvy2003-12-121-2/+12
| | | | | the socket handler thread is really in a paused state. This can happen when Tcl is being unloaded by the OS from an exception handler.
* * unix/configure:hobbs2003-12-093-6/+81
| | | | | * unix/tcl.m4: updated OpenBSD build configuration based on [Patch #775246] (cassoff)
* fixed tests and constraints and setup so works x-platformvincentdarley2003-12-091-20/+53
|
* #ifdef'd out errno declarations; incompatible with recent glibc. [Bug 852369]dkf2003-12-093-2/+17
|
* NT file permissions fix and testsvincentdarley2003-12-094-10/+137
|
* Stop losing references when variables are repeated in [binary scan]. [851747]dkf2003-12-023-41/+87
|
* * doc/lset.n: fix typo [Bug 852224]Miguel Sofer2003-12-012-2/+6
|
* * generic/tclParse.c: Corrected faulty check for trailing whitedgp2003-11-243-3/+22
| | | | | space in {expand} parsing. Thanks Andreas Leitgeb. [Bug 848262]. * tests/parse.test: New tests for the bug.
* remove windows [cd] bugvincentdarley2003-11-242-5/+18
|
* * tests/winFCmd.test (winFCmd-16.10,11): Merged new tests fromdgp2003-11-212-5/+19
| | | | core-8-4-branch.
* * generic/tclVar.c: fix flag bit collision betweenMiguel Sofer2003-11-202-2/+11
| | | | LOOKUP_FOR_UPVAR and TCL_PARSE_PART1 (deprecated) [Bug 835020]
* * tests/compile.test (compile-16.22.0): Improved test for thedgp2003-11-202-5/+13
| | | | recent fix for Bug 845412.
* Fixed Bug 845412; long commands without expansion don't get tangled with thedkf2003-11-193-3/+17
| | | | expansion machinery now...
* Changes from Victor Wagner <vitus@45.free.net> for better DJGPP support.davygrvy2003-11-182-1/+14
|
* Changes from Victor Wagner <vitus@45.free.net> for DJGPP support.davygrvy2003-11-182-4/+13
|
* more details on the regexp fix.dgp2003-11-171-0/+10
|
* * tests/reg.test: Added tests for [Bugs 230589, 504785, 505048, 840258]dgp2003-11-172-1/+53
| | | | recently fixed by 2003-11-15 commit to regcomp.c by Pavel Goran.
* Added cast to suppress compiler warning.dgp2003-11-171-2/+2
|
* Miguel's masking bits had the wrong sense. I should have spotteddkf2003-11-161-2/+2
| | | | this, but he did instead...
* D'oh! instructionCount is post-incremented, not pre-incremented...dkf2003-11-161-3/+4
|
* Miguel Sofer's patch (with small revisions) to make sure the bytecode enginedkf2003-11-164-14/+176
| | | | checks for async events fairly frequently. [Bug 746722]
* Stop VC++ 5.2 warning. [Bug 842511]dkf2003-11-152-2/+11
|
* Whitespace fixesdkf2003-11-151-15/+15
|
* Fixed code that splits RE engine states into "progress" and "no-progress" ↵pvgoran2003-11-151-2/+6
| | | | (bugs 505048, 230589, 840258 and 504785).
* Added cast to suppress compiler warning.dgp2003-11-151-2/+2
|
* TIP#138 implementation plus extra test stuff [Patch 731356]dkf2003-11-147-41/+170
|
* Version number/changebar fixdkf2003-11-142-4/+8
|
* * doc/ParseCmd.3: Implementation of TIP 157. Adds recognitiondgp2003-11-1438-641/+1540
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/Tcl.n: of the new leading {expand} syntax on words. * generic/tcl.h: Parses such words as the new Tcl_Token type * generic/tclBasic.c: TCL_TOKEN_EXPAND_WORD. Updated Tcl_EvalEx * generic/tclCompile.c: and the bytecode compiler/execution engine * generic/tclCompile.h: to recognize the new token type. New opcodes * generic/tclExecute.c: INST_LIST_VERIFY and INST_INVOKE_EXP and a new * generic/tclParse.c: operand type OPERAND_ULIST1 are defined. Docs * generic/tclTest.c: and tests are included. * tests/basic.test: * tests/compile.test: * tests/parse.test: * library/auto.tcl: Replaced several [eval]s used to perform * library/package.tcl: argument expansion with the new syntax. * library/safe.tcl: In the test files lindex.test and lset.test, * tests/cmdInfo.test: replaced use of [eval] to force direct * tests/encoding.test: string evaluation with use of [testevalex] * tests/execute.test: which more directly and robustly serves the * tests/fCmd.test: same purpose. * tests/http.test: * tests/init.test: * tests/interp.test: * tests/io.test: * tests/ioUtil.test: * tests/iogt.test: * tests/lindex.test: * tests/lset.test: * tests/namespace-old.test: * tests/namespace.test: * tests/pkg.test: * tests/pkgMkIndex.test: * tests/proc.test: * tests/reg.test: * tests/trace.test: * tests/upvar.test: * tests/winConsole.test: * tests/winFCmd.test:
* * tests/cmdMZ.test (cmdMZ-1.4): change to nonPortable as morehobbs2003-11-122-8/+11
| | | | | systems are using permissions caching, and this isn't really a Tcl controlled issue.
* * unix/configure:hobbs2003-11-123-81/+86
| | | | | | * unix/tcl.m4: improve AIX --enable-64bit handling remove -D__NO_STRING_INLINES -D__NO_MATH_INLINES from CFLAGS_OPTIMIZE on Linux. Make default opt -O2 (was -O).
* no messagedavygrvy2003-11-111-0/+7
|
* added socklen_t typedef for DJGPPdavygrvy2003-11-111-1/+2
|
* * library/dde/pkgIndex.tcl: Added safeguards so that registrydgp2003-11-1010-25/+38
| | | | | | | | | | | | * library/reg/pkgIndex.tcl: and dde packages are not offered * win/tclWinDde.c: on non-Windows platforms. Bumped to * win/tclWinReg.c: registry 1.1.3 and dde 1.3. * win/Makefile.in: * win/configure.in: * win/makefile.bc: * win/makefile.vc: * win/configure: autoconf (2.57)
* * unix/tclUnixInit.c (TclpInitLibraryPath):dgp2003-11-103-5/+49
| | | | | * win/tclWinInit.c (TclpInitLibraryPath): Fix for [Bug 832657] that should not run afoul of startup constraints.
* Make cmdIL.test more self-contained [Bug 838384]dkf2003-11-102-29/+56
|
* fix to misleading error messagevincentdarley2003-11-103-9/+32
|