summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* * doc/tcltest.n: Typo fix. [Bug 1663539]dgp2007-02-201-2/+2
| | | FossilOrigin-Name: aad1d38e1ea36d86fef5c0e40387465e8f07192f
* * doc/fcopy.n: Typo fix. [Bug 1630627]dgp2007-01-291-2/+2
| | | FossilOrigin-Name: ac61105d8a944bbb1f7db0dd890b89d6986b1507
* Fix example. [Bug 1615277]dkf2006-12-141-2/+2
| | | FossilOrigin-Name: d5ed65cf82b85582d598c0021a0ad9e1e5c22582
* Fix [Bug 1606454]dkf2006-12-041-2/+2
| | | FossilOrigin-Name: c1e3f441f9a39fb79e185e778f9d38a195497aeb
* * generic/tcl.decls: Implemented TIP #268, conditionally.andreas_kupries2006-09-221-3/+1
| | | | | | | | | | | | | | | | | * generic/tclBasic.c: Define TCL_TIP268 to activate the new * generic/tclDecls.h: features. * generic/tclInt.h: * generic/tclPkg.c: * generic/tclStubInit.c: * generic/tclTest.c: * library/init.tcl * library/package.tcl: * tests/pkg.test: * tests/platform.test: * tests/safe.test: * doc/PkgRequire.3: FossilOrigin-Name: 78a272c42aaf7c6c9472f55bef7a82605b1cc2c6
* * tests/msgcat.test: Bumped version in auxiliary files as well.andreas_kupries2006-09-111-1/+1
| | | | | | * doc/msgcat.n: FossilOrigin-Name: f2526797ed2e61d4f24923d4d8cd14f9fd50a10a
* typodgp2006-09-051-1/+1
| | | FossilOrigin-Name: d790a5958a5ae60097089dfd0c2904a2f60230d3
* correct package examplehobbs2006-09-041-3/+4
| | | FossilOrigin-Name: 7d94c968f05a1c16a5295cce610f3c0c5ac48382
* Fix typo [Bug 1496886]jenglish2006-07-301-2/+2
| | | FossilOrigin-Name: c1201f239838d96b485dc223f1e449ba7f67f0d9
* * doc/GetStdChan.3: Added recommendation that each call todgp2006-06-061-1/+11
| | | | | | Tcl_SetStdChannel() be accompanied by a call to Tcl_RegisterChannel(). FossilOrigin-Name: d79ba117f3e1b3d3023fa87806f1d9d00d8bd9bc
* fix make-html errordas2006-04-121-2/+2
| | | FossilOrigin-Name: 1c670861fced9568ed3dced1fd4d612208251fa4
* * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): It seemsdgp2006-04-061-2/+2
| | | | | | | | | * tests/indexObj.test: there are extensions that rely on the prior * doc/GetIndex.3: behavior that the empty string cannot succeed as a unique prefix matcher, so I'm restoring Donal Fellow's solution. Added mention of this detail to the documentation. [Bug 1464039] FossilOrigin-Name: aac13e1a469e70a6d61c82fc810918c31c129d9d
* * doc/open.n: Documented the changed behaviour of 'a'ppend mode.andreas_kupries2006-03-161-2/+2
| | | FossilOrigin-Name: e904939e374552265e38fedee0b60768f9ea403c
* * doc/fconfigure.n: Clarified that -translation is binary isandreas_kupries2006-03-141-1/+8
| | | | | | | | reported as lf when queried, because it is identical to lf, except for the special additional behaviour when setting it. [Bug 666770]. FossilOrigin-Name: bf933e9c443af7406b5f9d9ae087316ee527b218
* Clarify specification of variable substitutiondkf2005-12-191-2/+3
| | | FossilOrigin-Name: b5203840e339cf25b3f4ec10dda848988c72356f
* doc changes with 1162286 fixdgp2005-11-091-8/+1
| | | FossilOrigin-Name: 147e10f6e6a9df02286f59e6de62362cfc182ef9
* * doc/CrtChannel.3: Fixed [SF Tcl Bug 1104682], by application ofandreas_kupries2005-10-051-8/+10
| | | | | | | David Welton's patch for it, and added a note about wideSeekProc. FossilOrigin-Name: 14d10f221342c699d5d06f87fd7fb4d6ab657608
* * doc/ParseCmd.3: copy/paste fix [Bug 1292427]msofer2005-09-151-2/+2
| | | FossilOrigin-Name: 6e3d5cce85ee0d71f9fce06dcba932fdb16d26d4
* * doc/tclvars.n: Improved $errorCode documentation. [RFE 776921]dgp2005-07-261-4/+3
| | | FossilOrigin-Name: 296a35434b468eed131957e5849317603056323e
* * doc/FileSystem.3: added missing Tcl_GlobTypeData documentationdgp2005-06-201-6/+34
| | | | | | [Bug 935853] FossilOrigin-Name: 4441d3574e83f6be06b922662f435e16367ba194
* Corrected example that confused [namespace which] and [namespace origin]dgp2005-05-121-2/+2
| | | FossilOrigin-Name: 4747c60a4f0ef6eaec29a08f3b6d6696c7c42997
* documentation improvements.dgp2005-05-033-13/+7
| | | FossilOrigin-Name: c73c6b9be6239aba47be03175d58699ed6a928c9
* Backported doc fixdkf2005-04-291-2/+5
| | | FossilOrigin-Name: 83eaf12085a8863393d3d45a4f3ec4aa224b23f0
* * win/tclWinPipe.c: The pipe channel driver now respectsdavygrvy2005-04-191-2/+3
| | | | | | | | | | | | | | | | | | | | the -blocking option when closing. The windows pipe driver now has the same behavior as the UNIX side. This change is to avoid a hung shell when exiting due to open pipes that refuse to close in a graceful manner. * doc/open.n: Added a note about -blocking 0 and lack of exit status as it had never been documented. [Bug 947693] ***POTENTIAL INCOMPATIBILITY*** Scripts that use async pipes on windows, must (like the UNIX side) set -blocking to 1 before calling [close] to receive the exit status. * tests/winPipe.test (winpipe-6.1/2): added 'fconfigure $f -blocking 1' so the exit status can be acquired. FossilOrigin-Name: 435e6257fb028448b70ca680a3a63b11c1553c75
* Formatting typo fix. [Bug 1149605]dkf2005-02-231-2/+2
| | | FossilOrigin-Name: 46ddcbd9728acc2b81672f0267fe42edff255e6b
* * /doc/variable.n: fix for [Bug 1124160], variables are detectedmsofer2005-02-161-2/+2
| | | | | | by [info vars] but not by [info locals]. FossilOrigin-Name: 75f5651679e6689e451846fd09db5f8c362cbaf5
* More consistency. [Bug 1117017]dkf2005-02-101-5/+9
| | | FossilOrigin-Name: 48135ca6b17ddf12422ad23181eda331e458edd8
* TIP#218 IMPLEMENTATIONandreas_kupries2005-01-271-9/+62
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclDecls.h: Regenerated from tcl.decls. * generic/tclStubInit.c: * doc/CrtChannel.3: Documentation of extended API, * generic/tcl.decls: extended testsuite, and * generic/tcl.h: implementation. Removal of old * generic/tclIO.c: driver-specific TclpCut/Splice * generic/tclInt.h: functions. Replaced with generic * tests/io.test: thread-action calls through the * unix/tclUnixChan.c: new hooks. Update of all builtin * unix/tclUnixPipe.c: channel drivers to version 4. * unix/tclUnixSock.c: Windows drivers extended to * win/tclWinChan.c: manage thread state in a thread * win/tclWinConsole.c: action handler. * win/tclWinPipe.c: * win/tclWinSerial.c: * win/tclWinSock.c: * mac/tclMacChan.c: FossilOrigin-Name: 1621430b8bd8ba1f234e7b963155cd20e9a5decc
* Change emacs mode comment style to stop problems with older man. [1085127]dkf2005-01-051-2/+5
| | | FossilOrigin-Name: 505a89aac42f62bdbeb8809a136cb8eaaece1a14
* Add note to clock.n disclaiming full ISO8601 supportkennykb2004-12-131-2/+6
| | | FossilOrigin-Name: 35222a7ed5682b50d0767609c18d0a29e3e95026
* Minor doc fixesdkf2004-12-091-9/+9
| | | FossilOrigin-Name: d2b3f026a6f5b4c365e4eafe3b1044ece42e5c34
* removed extra .TP macrohobbs2004-12-031-2/+4
| | | FossilOrigin-Name: 25a56ea1407841d196ef08db17a5bee8352eb778
* Assorted dde fixes as requested by Andreas Kupries.dkf2004-11-261-17/+15
| | | FossilOrigin-Name: 9c433c42078374db27248324fbf451e9ef9fcb72
* Added hint to TCL_DECLARE_MUTEX macro usage.vasiljevic2004-11-251-3/+7
| | | FossilOrigin-Name: cf849ef569bbef770d6cf4e62caa48a6b61ee434
* Fixed argument of mutexPtr wrongly saying that it is a Tcl_Condition.vasiljevic2004-11-251-2/+2
| | | | | | (Tcl Bug #1068077) FossilOrigin-Name: 151e6591889cc88b59ec05de0cd2d13ce7eadd73
* Fixed the Tcl_ThreadAlert() call declaration (Tcl Bug #1068077)vasiljevic2004-11-251-2/+2
| | | FossilOrigin-Name: b3e17c20262ae3af4b1a93e752ecfd1948841aa4
* Backport of [Patch 1065732]dkf2004-11-161-2/+29
| | | FossilOrigin-Name: 0ecaa7ab6c6799e2f70439a57679499f2aaf05a3
* * doc/clock.n:das2004-11-123-15/+15
| | | | | | | | | | | * doc/registry.n: * doc/upvar.n: fixed *roff errors uncovered by running 'make html'. * tools/tcltk-man2html.tcl: added faked support for bullet point lists, i.e. *nroff ".IP \(bu" syntax. Synced other changes from HEAD. FossilOrigin-Name: 8cd37342ff9f8baeca8bfe5e4ce71dc2c8c929c2
* Clarify return code documentation. [Bug 1062647]dkf2004-11-091-7/+20
| | | FossilOrigin-Name: 89222829688d2987b82aac26b9dd59d5fb9e4e79
* Add synopsis for Tcl_GetChannelMode. [Bug 1058446]dkf2004-11-021-2/+5
| | | FossilOrigin-Name: 682b09131be23c05e38a61a573f75ee9172097ca
* Finished user-level documentation backportdkf2004-10-2713-70/+275
| | | FossilOrigin-Name: 92cb8415a84f82b13add50091cd0406e10d24d30
* Yet more doc update backportingdkf2004-10-2733-310/+771
| | | FossilOrigin-Name: 437d4766e451250d467d2b0c470b7c21a7ac2e2c
* More doc fix backportingdkf2004-10-2729-215/+742
| | | FossilOrigin-Name: 63610c2fd0b97f8b6c13c39e453c7b7fcc8decc2
* Backport many doc fixesdkf2004-10-2720-105/+459
| | | FossilOrigin-Name: 644d6ac51f656ccdc504748009d1fe4c2c69a0f5
* Clarify meaning of [lsearch -dictionary]dkf2004-09-021-3/+6
| | | FossilOrigin-Name: c0bfca3cf32c22ae654aa3d6488bf1178ea37b8f
* fix for [Bug 1008314]msofer2004-08-161-1/+4
| | | FossilOrigin-Name: 6e5e508723daff31b783eec0c6692f85b91cb95d
* * 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]. FossilOrigin-Name: 9a6268129ac45797f0a04ba044a37e05492f1b78
* * 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]. FossilOrigin-Name: b50863fa4229d7f50b3aba73dc3ef45140108a37
* * 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>. FossilOrigin-Name: bf82448fce9273b7fcdb9ec40240f56b381cdd33
* * 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. FossilOrigin-Name: 91ff6467230152d7ee06113589b3a4be1c0e2b87