summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* * 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/+9
| | | | | | | | | | | | | | | | | | | | | | * 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.
* * 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.
* * doc/set.n: accurate description of name resolution process,Miguel Sofer2004-05-241-15/+13
| | | | referring to namespace.n for details [Bug 959180]
* * compat/strftime.c (_fmt, ISO8601Week): Kevin B Kenny2004-05-181-1/+7
| | | | | | | * doc/clock.n: * tests/clock.test: Major rework to the handling of ISO8601 week numbers. Now passes all the %G and %V test cases on Windows, Linux and Solaris [Bugs #500285, #500389, and #852944]
* Docbug. [Bug 953374]dkf2004-05-171-2/+2
|
* * doc/unset.n: added upvar.n to the "see also" listMiguel Sofer2004-05-071-2/+2
|
* Remove reference to totally non-existant API. [Bug 848440]dkf2004-05-051-2/+2
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-311-1/+1
| | | | | | | | | | | * library/msgcat/msgcat.tcl ([mcset], [ConvertLocale], [Init]): 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.3.2.
* * doc/tcltest.n:dgp2004-02-181-3/+4
| | | | | | * library/tcltest/tcltest.tcl: Changed -verbose default value to {body error} so that detailed information on unexpected errors in tests is provided by default, even after the fix for [Bug 725253]
* minor clarification in exists vs vars return listhobbs2004-02-131-1/+3
|
* * doc/clock.n: Removed reference to non-existent [file ctime].dgp2004-02-061-3/+3
|
* * doc/lset.n: fix typo [Bug 852224]Miguel Sofer2003-12-011-2/+2
|
* format correction and clarification backportdgp2003-10-081-3/+4
|
* * doc/OpenFileChnl.3: Updated Tcl_Tell and Tcl_Seek documentationdgp2003-10-071-3/+5
| | | | to reflect that they now return Tcl_WideInt (TIP 72) [Bug 787537]
* FileSystem.3vincentdarley2003-10-031-8/+16
|
* Tightened up Tcl_Utf{Next,Prev} docs. [Bug 769895]dkf2003-07-181-5/+8
|
* * doc/tcltest.n: Restored the [Eval] proc to replacedgp2003-07-181-7/+7
| | | | | | | | | | * library/tcltest/tcltest.tcl: the [::puts] command when either the -output or -error option for [test] is in use, in order to capture data written to the output or error channels for comparison against what is expected. This is easier to document and agrees better with most user expectations than the previous attempt to replace [puts] only in the caller's namespace. Documentation made more precise on the subject. [Bug 706359]
* * doc/AddErrInfo.3: Improved consistency of documentationdgp2003-07-1810-34/+34
| | | | | | | | | | | | | | * doc/CrtTrace.3: by using "null" everywhere to refer to * doc/Encoding.3: the character '\0', and using "NULL" * doc/Eval.3: everywhere to refer to the value of a * doc/GetIndex.3: pointer that points to nowhere. * doc/Hash.3: Also dropped references to ASCII that * doc/LinkVar.3: are no longer true, and standardized on * doc/Macintosh.3: the hyphenated spelling of "null-terminated". * doc/OpenFileChnl.3: * doc/SetVar.3: * doc/StringObj.3: * doc/Utf.3:
* * doc/CrtSlave.3 (Tcl_MakeSafe): Removed warning about possibledgp2003-07-183-10/+9
| | | | deprecation (no TIP on that).
* Tcl_MakeSafe is a nasty function; document it as such. [Bug 655300]dkf2003-07-161-5/+11
|
* * doc/http.n: Updated SYNOPSIS to match actual syntax ofdgp2003-07-161-3/+3
| | | | commands. [Bug 756112]
* Missed a bit off the last checkin! <:^)dkf2003-07-151-2/+2
|
* Added examples from David Welton [Patch 763312]dkf2003-07-151-1/+54
|
* missing .hobbs2003-07-141-2/+2
|
* typo fixes from trunkdas2003-07-141-5/+5
|
* Documented and tested for the current behaviour of [binary format a] anddkf2003-07-111-2/+12
| | | | [binary scan ? a]. This is what they've been doing all along. [Bug 735364]
* Tighened up wording of several expr operations to make them less inclined todkf2003-07-041-12/+14
| | | | misinterpretation. [Bug 758488]
* Documented that [source] always uses the system encoding.dkf2003-06-241-8/+12
|
* fs doc fixvincentdarley2003-06-231-13/+13
|
* * doc/socket.n: nroff font handling correction.hobbs2003-05-151-2/+2
|
* * doc/Eval.3: Corrected prototype for Tcl_GlobalEvalObj [Bug 727622].dgp2003-05-121-2/+2
|
* Moved serial line options to their creator, open.n, from the generic pagedkf2003-04-182-203/+178
| | | | fconfigure.n which was never an obvious spot for them. [Bug 679010]
* If you deal with network sockets, you should care about encodings. Tcl cannotdkf2003-04-161-2/+9
| | | | guess it for you. Updated socket docs to remind people about this. [Bug 630621]
* Math funcs might have to deal with wide ints; document this. [Bug 709720]dkf2003-04-161-7/+20
|
* * generic/tclCmdMZ.c (Tcl_StringObjCmd,STR_IS_INT): Correcteddgp2003-04-111-2/+2
| | | | | | | | inconsistent results of [string is integer] observed on systems where sizeof(long) != sizeof(int). [Bug 718878] * tests/string.test: Added tests for Bug 718878. * doc/string.n: Clarified that [string is integer] accepts 32-bit integers.
* Another minor typo.dkf2003-04-101-2/+2
|
* Fixed silly typo. [Bug 718543]dkf2003-04-101-2/+2
|
* update docs for latest changedgp2003-03-261-6/+3
|
* typo corrections in ARGUMENTSdgp2003-03-261-3/+3
|
* * doc/Eval.3 (Tcl_EvalObjEx): Corrected CONST anddgp2003-03-192-8/+10
| | | | | * doc/ParseCmd.3 (Tcl_EvalTokensStandard): return type errors in documentation. [Bug 683994]
* Fixed docbug in lsearch and lsort for -ascii opt, which operates on Unicodedkf2003-03-172-5/+7
| | | | not ASCII these days. [Bug #703807]
* * doc/tcltest.n: Added missing "-body" to example. Thanks todgp2003-03-081-3/+3
| | | | Helmut Giese. [Bug 700011]
* file documentation fixvincentdarley2003-02-281-2/+2
|
* * doc/pkgMkIndex.n: Modified [pkg_mkIndex] to use -nocase matchingdgp2003-02-251-2/+3
| | | | | | * library/package.tcl: of -load patterns, to better accomodate common user errors due to confusion between [package names] names and [info loaded] names.
* Typo fix [Bug #688943]dkf2003-02-201-2/+2
|
* Added language to describe the handling of the end-of-file character Kevin B Kenny2003-02-131-3/+13
| | | | \u001a embedded in a script file. [Bug 685485]
* * doc/append.n: Return value was not documented. [Bug 683188]dkf2003-02-101-1/+3
|