summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* fix for [Bug 1008314]Miguel Sofer2004-08-161-1/+4
|
* TIP#207 IMPLEMENTATIONdgp2004-08-021-3/+11
| | | | | | | | | | * doc/interp.n: Added support for a -namespace option to the * generic/tclBasic.c: [interp invokehidden] command. Also added an * generic/tclInt.h: internal routine TclObjInvokeNamespace() and * generic/tclInterp.c: corrected the flag names TCL_FIND_ONLY_NS and * generic/tclNamesp.c: TCL_CREATE_NS_IF_UNKNOWN that are passed to the * generic/tclTrace.c: internal routine TclGetNamespaceForQualName(). * tests/interp.test: [Patch 981841]
* cd infinite loop bug fixedvincentdarley2004-07-171-5/+6
|
* * doc/OpenFileChnl.3: Added description of the behaviour ofandreas_kupries2004-07-161-1/+5
| | | | | Tcl_ReadChars when its 'charsToRead' argument is set to -1. Fixes [Tcl SF Bug 934511].
* * doc/CrtCommand.3: Added note that the arguments given to theandreas_kupries2004-07-161-1/+6
| | | | | command proc of a Tcl_CreateCommand are in utf8 since Tcl 8.1. Closing [Tcl SF Patch 414778].
* * doc/ChnlStack.3: Removed the declaration that the interpandreas_kupries2004-07-161-2/+2
| | | | | | argument to Tcl_(un)StackChannel can be NULL. This fixes [Tcl SF Bug 881220], reported by Marco Maggi <marcomaggi@users.sourceforge.net>.
* * generic/tclIO.h (CHANNEL_INCLOSE): New flag. Set inandreas_kupries2004-07-151-1/+8
| | | | | | | | | | | | | | | | | | | | | | * generic/tclIO.c (Tcl_UnregisterChannel): 'Tcl_Close' while the * generic/tclIO.c (Tcl_Close): close callbacks are run. Checked in 'Tcl_Close' and 'Tcl_Unregister' to prevent recursive call of 'close' in the close-callbacks. This is a possible error made by implementors of virtual filesystems based on 'tclvfs', thinking that they have to close the channel in the close handler for the filesystem. * generic/tclIO.c: * generic/tclIO.h: * Not reverting, but #ifdef'ing the changes from May 19, 2004 out of the core. This removes the ***POTENTIAL INCOMPATIBILITY*** for channel drivers it introduced. This has become possible due to Expect gaining a BlockModeProc and now handling blockingg and non-blocking modes correctly. Thus [SF Tcl Bug 943274] is still fixed if a recent enough version of Expect is used. * doc/CrtChannel.3: Added warning about usage of a channel without a BlockModeProc.
* * generic/tclPipe.c (TclCreatePipeline): applied TIP #202 patchhobbs2004-07-021-6/+15
| | | | | * doc/exec.n, tests/exec.test: that adds 2>@1 as a special case redirection of stderr to the result output.
* Doc fixes. [Bug 983146]dkf2004-07-013-23/+10
|
* fix to trailing slash documentation and to a filesystem 'file join' bug on ↵vincentdarley2004-06-301-2/+7
| | | | windows
* TIP#188 implementation. Thanks to KBK! [Patch 940915]dkf2004-06-301-20/+26
|
* Added note about not touching bytes during freeIntRepProc running.dkf2004-06-181-1/+4
|
* * doc/library.n: Moved variables ::auto_oldpath anddgp2004-06-161-14/+1
| | | | | * library/auto.tcl: ::unknown_pending into ::tcl namespace. * library/init.tcl: [Bugs 808319, 948794]
* Added doc clarification in response to [RFE 768852]dkf2004-06-151-6/+11
|
* * doc/Encoding.3: Removed bogus claims about tcl_libPath.dgp2004-06-111-3/+3
| | | | | | | | | | | | | | * generic/tclInterp.c (Tcl_Init): Stopped setting the tcl_libPath variable. [tclInit] can get all its directories without it. * tests/unixInit.test: Modified test code that made use of tcl_libPath variable. * unix/tclUnixInit.c: Stopped setting the tclDefaultLibrary variable, execept on the Mac OS X platform with HAVE_CFBUNDLE. In that configuration we should seek some way to make use of the TIP 59 facilities and get rid of that usage of tclDefaultLibrary as well.
* Clarified that [pwd] really returns the absolute path of the currentvasiljevic2004-06-101-3/+3
| | | | working directory. This fixes the Tcl Bug #969509
* Fixed a minor lsearch example fault. [Bug 968219]dkf2004-06-071-10/+10
|
* Removed language that encouraged abuse. [package] is for packages.dgp2004-06-021-4/+2
|
* documentation bugvincentdarley2004-06-021-3/+5
|
* Added examplesdkf2004-05-301-4/+29
|
* Shrank the spacing slightlydkf2004-05-301-6/+0
|
* Addex exampledkf2004-05-301-5/+42
|
* Added example and cleaned up a few bits of documentation.dkf2004-05-301-9/+24
|
* Added exampledkf2004-05-301-1/+15
|
* Limits documentation and style improvementsdkf2004-05-302-1/+206
| | | | Added C docs, cleaned up C code, added note on behaviour of limited master interps
* Fix minor markup errors.jenglish2004-05-293-14/+12
|
* Added exampledkf2004-05-282-2/+31
|
* Added exampledkf2004-05-282-2/+29
|
* Added exampledkf2004-05-282-3/+51
|
* Added examplesdkf2004-05-281-1/+29
|
* Added example inspired by TIP#65dkf2004-05-281-1/+20
|
* Added example, cross-references, and a note that {expand} is usually adkf2004-05-281-2/+31
| | | | better choice!
* Added examplesdkf2004-05-281-1/+24
|
* Added example (based on TIP)dkf2004-05-271-1/+30
|
* Added examplesdkf2004-05-271-1/+38
|
* Added examplesdkf2004-05-271-1/+34
|
* Added example.dkf2004-05-271-1/+12
|
* Added exampledkf2004-05-272-2/+31
|
* * doc/http.n (http::config): add -urlencoding option (default utf-8)hobbs2004-05-251-3/+13
| | | | | | | | | * library/http/http.tcl: that specifies encoding conversion of * library/http/pkgIndex.tcl: args for http::formatQuery. Previously * tests/http.test: undefined, RFC 2718 says it should be utf-8. 'http::config -urlencoding {}' returns previous behavior, which will throw errors processing non-latin-1 chars. Bumped http package to 2.5.0.
* Added exampledkf2004-05-251-1/+8
|
* Added exampledkf2004-05-251-1/+16
|
* Added examplesdkf2004-05-251-1/+12
|
* * docs/global.n: added details for qualified variable namesMiguel Sofer2004-05-251-10/+21
| | | | [Bug 959831]
* Add exampledkf2004-05-251-2/+17
|
* More idiomatic example. [Bug 959602]dkf2004-05-251-4/+2
|
* Added examplesdkf2004-05-244-30/+83
|
* * doc/set.n: accurate description of name resolution process,Miguel Sofer2004-05-241-15/+13
| | | | referring to namespace.n for details [Bug 959180]
* Added exampledkf2004-05-241-1/+23
|
* Added examples and more cross-referencesdkf2004-05-241-9/+49
|
* Added example and cross-referencedkf2004-05-241-2/+9
|