summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add proper test constraintsvincentdarley2006-03-152-3/+8
|
* * doc/fconfigure.n: Clarified that -translation is binary isandreas_kupries2006-03-142-1/+15
| | | | | | reported as lf when queried, because it is identical to lf, except for the special additional behaviour when setting it. [Bug 666770].
* * doc/clock.n: Removed double-quotes around section title NAME. not needed.andreas_kupries2006-03-142-1/+7
| | | | | * unix/installManpage: Reverted part to handle double-quotes in section NAME, chokes older sed installations.
* * library/tm.tcl (::tcl::tm::Defaults): Fixed handling ofandreas_kupries2006-03-143-2/+8
| | | | | environment variable TCLX.y_TM_PATH, bad variable reference. See [SF Tcl Bug 1448251]. Thanks to Julian Noble.
* 90% fix of file writable issues on Windowsvincentdarley2006-03-146-72/+442
|
* * generic/tclEncoding.c: Report error when an escape encodingdgp2006-03-132-6/+25
| | | | is missing one of its sub-encodings [Bug 506653].
* * unix/configure.in: Revert change from 2005-07-26 that sometimesdgp2006-03-134-16/+12
| | | | | * unix/configure: added $prefix/share to the tcl_pkgPath. See [Patch 1231015]. autoconf-2.59.
* silence a strict aliasing warning from gccrmax2006-03-131-3/+4
|
* * generic/tclProc.c (ObjInterpProcEx):Miguel Sofer2006-03-103-4/+25
| | | | | * tests/apply.test (apply-5.1): fix [apply] error messages so that they quote the lambda expression [Bug 1447355].
* Added notes about fixing Tcl Bug #1437595vasiljevic2006-03-101-0/+20
|
* Finalization of the sockets/pipesvasiljevic2006-03-102-88/+78
| | | | | | | | is now solely done in TclpFinalizeSockets() and TclpFinalizePipes() and not over the thread-exit handler, because the order of actions the Tcl generic core will impose may result in cores/hangs if the thread exit handler tears down corresponding subsystem(s) too early.
* Added no-op TclpFinalizeSockets().vasiljevic2006-03-101-1/+23
|
* Calls TclpFinalizeSockets() as partvasiljevic2006-03-101-1/+8
| | | | of the TclFinalizeIOSubsystem()
* Added TclpFinalizeSockets() call.vasiljevic2006-03-101-1/+2
|
* Cosmetic touch.vasiljevic2006-03-101-4/+3
|
* missing staticdgp2006-03-101-2/+2
|
* When moving http TM install from 8.2 to 8.4, overlooked changing the mkdirsdgp2006-03-101-2/+2
| | | | so that 8.4 rather than 8.2 is known to exist.
* remove previous patch for 'file writable'vincentdarley2006-03-102-163/+36
|
* Undo latest commit due to controversy about whether some use casedgp2006-03-092-9/+2
| | | | might exist for a Tcl_Panic that returns.
* * generic/tclPanic.c (Tcl_PanicVA): added an unconditional abortMiguel Sofer2006-03-092-2/+9
| | | | | | at the end, to insure that a panic cannot return even if the actual procedure was overriden by a Tcl_SetPanicProc() call. Bug caught by looking at Coverity's analysis.
* fix to file writable in certain XP directoriesvincentdarley2006-03-092-2/+158
|
* * generic/tclExecute.c: Complete missing bit of TIP 215 implementationdgp2006-03-083-3/+15
| | | | * tests/incr.test:
* Set SHLIB_LD_FLAGS='${LIBS}' on NetBSD, as per the other *BSD variantsjenglish2006-03-083-2/+7
| | | | [Bug 1334613]. Regenerate configure script.
* * changes: Update in prep. for 8.5a4 release.dgp2006-03-072-2/+217
|
* * unix/Makefile.in: Package http 2.5.2 requires Tcl 8.4, sodgp2006-03-075-13/+12
| | | | | * win/Makefile.in: the *.tm installation has to be placed in an "8.4" directory, not an "8.2" directory.
* * library/http/http.tcl: Bump to version 2.5.3 to cover bug fixdgp2006-03-075-9/+16
| | | | | | * library/http/pkgIndex.tcl: in URL parsing. [Bug 1358369] * unix/Makefile.in: * win/Makefile.in:
* * generic/tclBasic.c: Revised handling of TCL_EVAL_* flags todgp2006-03-063-37/+51
| | | | | * tests/parse.test: simplify TclEvalObjvInternal and to correct the auto-loading of alias targets (parse-8.12). [Bug 1444291].
* another stab at fixing 1379287dgp2006-03-041-6/+13
|
* * generic/tclPathObj.c: Revised yesterday's fix for [Bug 1379287]dgp2006-03-032-5/+10
| | | | to work on Windows.
* * generic/tclObj.c: Compatibility support for existing code thatdgp2006-03-032-2/+17
| | | | calls Tcl_GetObjType("boolean").
* * generic/tclPathObj.c: Fix for failed normalization ofdgp2006-03-033-8/+92
| | | | | * tests/fileSystem.test: paths with /../ that lead back to the root of the filesystem, like /foo/.. [Bug 1379287].
* * unix/installManPage: Fix the script for manpages that havermax2006-03-012-18/+24
| | | | | quotes around the .SH arguments, as doctools produces them (Bug#1292145). Some minor cleanups and improvements.
* * generic/tclBasic.c: Corrections to be sure that TCL_EVAL_GLOBALdgp2006-02-285-8/+92
| | | | | | | * tests/namespace.test: evaluations act the same as [uplevel #0] * tests/parse.test: evaluations, even when execution traces or * tests/trace.test: invocations of [::unknown] are present. [Bug 1439836].
* added missing constraintdgp2006-02-271-2/+5
|
* * generic/tclBasic.c: Corrected a few bugs in how [namespace unknown]dgp2006-02-223-52/+115
| | | | * tests/namespace.test: interacts with TCL_EVAL_* flags. [Patch 958222]
* * generic/tclIORChan.c: Revised error message generation and handlingdgp2006-02-173-161/+178
| | | | | * tests/ioCmd.test: of exceptional return codes in the channel reflection layer. [Bug 1372348].
* * generic/tclIndexObj.c: Disallow the "ambiguous" error messagedgp2006-02-164-7/+16
| | | | | * tests/indexObj.test: when TCL_EXACT matching is requested. * tests/ioCmd.test:
* * generic/tclIO.c: Made several routines tolerant ofdgp2006-02-154-26/+53
| | | | | * generic/tclIORChan.c: interp == NULL arguments. [Bug 1380662] * generic/tclIOUtil.c:
* TIP#215 IMPLEMENTATIONdgp2006-02-098-38/+47
| | | | | | | | | | * doc/incr.n: Revised [incr] to auto-initialize when varName * generic/tclExecute.c: argument is unset. [Patch 1413115]. * generic/tclVar.c: * tests/compile.test: * tests/incr-old.test: * tests/incr.test: * tests/set.test:
* dup test namedgp2006-02-091-2/+2
|
* dup test namedgp2006-02-091-2/+2
|
* * tests/main.test (Tcl_Main-6.7): Improved robustness ofdgp2006-02-092-1/+7
| | | | command auto-completion test. [Bug 1422736].
* typodgp2006-02-081-2/+2
|
* Updates post-reviewdkf2006-02-083-34/+27
|
* TIP#258 IMPLEMENTATIONdgp2006-02-0818-131/+281
| | | | | | | | | | | | | | | | | | | | | * doc/Encoding.3: New subcommand [encoding dirs]. * doc/encoding.n: New routine Tcl_GetEncodingNameFromEnvironment. * generic/tcl.decls: Made public: * generic/tclBasic.c: TclGetEncodingFromObj * generic/tclCmdAH.c: -> Tcl_GetEncodingFromObj * generic/tclEncoding.c:TclGetEncodingSearchPath * generic/tclInt.decls: -> Tcl_GetEncodingSearchPath * generic/tclInt.h: TclSetEncodingSearchPath * generic/tclTest.c: -> Tcl_SetEncodingSearchPath * library/init.tcl: Removed commands: * tests/cmdAH.test: [tcl::unsupported::EncodingDirs] * tests/encoding.test: [testencoding path] (Tcltest) * unix/tclUnixInit.c: [Patch 1413934]. * win/tclWinInit.c: * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c:
* Minor simplification of forward declarationsdkf2006-02-021-5/+3
|
* Minor style fixesdkf2006-02-021-16/+15
|
* Style/comment fixesdkf2006-02-021-83/+81
|
* Space/style improvementsdkf2006-02-021-107/+139
|
* Restore formatting goodnessdkf2006-02-011-276/+346
|