summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* * doc/tclvars.n:Kevin B Kenny2011-01-151-9/+27
| | | | | | | | | | * generic/tclStrToD.c: * generic/tclUtil.c (Tcl_PrintDouble): * tests/util.test (util-16.*): Restored full Tcl 8.4 compatibility for the formatting of floating point numbers when $::tcl_precision is not zero. Added compatibility tests to make sure that excess trailing zeroes are suppressed for all eight major code paths. [Bug 3157475]
* * doc/file.n: [Bug 3111298]: Typofix.dkf2010-11-181-2/+2
|
* * doc/interp.n: [3081184] TIP #378.andreas_kupries2010-11-152-2/+77
| | | | | | | | | | * doc/tclvars.n: Performance fix for TIP #280. * generic/tclBasic.c: * generic/tclExecute.c: * generic/tclInt.h: * generic/tclInterp.c: * tests/info.test: * tests/interp.test:
* * doc/file.n (file readlink): [Bug 3070580]: Typofix.dkf2010-09-181-2/+2
|
* * doc/regsub.n: [Bug 3063568]: Fix for gotcha in example due to Tcl'sdkf2010-09-101-5/+8
| | | | | special handling of backslash-newline. Makes example slightly less pure, but more useful.
* * doc/tm.n: Added underscore to the set of characters accepted inandreas_kupries2010-09-081-3/+3
| | | | | module names. This is true for quite some time in the code, this change catches up the documentation.
* * doc/glob.n: Fixed documentation ambiguity regarding the handlingandreas_kupries2010-09-021-3/+4
| | | | of -join.
* * doc/Tcl.n: Avoid nroff hazards when generating documentation.dkf2010-09-011-3/+3
|
* * doc/dict.n: [Bug 3046999]: Corrected cross reference to arraydkf2010-08-291-2/+2
| | | | manpage to refer to (correct) existing subcommand.
* * doc/mathop.n: [Bug 3023165]: Fix typo that was preventing properdkf2010-06-301-2/+3
| | | | rendering of the exclusive-or operator.
* * doc/socket.n: [Bug 3007442]: Server sockets never took a hostdkf2010-05-261-2/+2
| | | | argument, so the list of options must precede the port argument.
* * doc/unset.n: [Bug 2988940]: Fix typo.dkf2010-04-181-2/+3
|
* * doc/package.n: [Bug 2980210]: Document the arguments taken bydkf2010-03-311-3/+4
| | | | the [package present] command correctly.
* * generic/tclIORChan.c: [Bug 2936225]: Thanks to Alexandre Ferrieuxandreas_kupries2010-03-091-3/+37
| | | | | | * doc/refchan.n: <ferrieux@users.sourceforge.net> for debugging and fixing * tests/ioCmd.test: the problem. It is the write-side equivalent to the bug fixed 2009-08-06.
* [bug 2929546]: Improve the dict documentation.dkf2010-01-191-5/+90
|
* [Bug 2921538]: Updated example to not be quite so ancient.dkf2009-12-271-3/+7
|
* [Bug 1911342]: Rewrite formatting to avoid bogus link from tm.n to list.n indkf2009-12-161-10/+11
| | | | the HTML documentation.
* [Bug 2901433]: Improved description of {*} syntax.dkf2009-11-301-7/+8
|
* [Patch 2903921]: Many small spelling fixes from Larry Virden.dkf2009-11-2714-43/+46
|
* Fix for [Bug 988703, 1565466]Joe Mistachkin2009-10-181-3/+12
|
* * doc/refchan.n [Bug 2827000]: Extended the implementation ofandreas_kupries2009-08-061-2/+31
| | | | | | | | * generic/tclIORChan.c: reflective channels (TIP 219, method * tests/ioCmd.test: 'read'), enabling handlers to signal EAGAIN to indicate 'no data, but not at EOF either', and other system errors. Updated documentation, extended testsuite (New test cases iocmd*-23.{9,10}).
* Fix examples. [Bug 2780680]dkf2009-04-271-21/+21
|
* * library/platform/platform.tcl: Extended the darwin sections toandreas_kupries2009-04-081-3/+3
| | | | | | | | | * library/platform/pkgIndex.tcl: add a kernel version number to * unix/Makefile.in: the identifier for anything from Leopard (10.5) * win/Makefile.in: on up. Extended patterns for same. Extended cpu * doc/platform.n: recognition for 64bit Tcl running on a 32bit kernel on a 64bit processor (By Daniel Steffen). Bumped version to 1.0.4. Updated Makefiles.
* * doc/Alloc.3: Size argument is "unsigned int". [Bug 2556263]dgp2009-03-301-2/+2
|
* typodgp2009-01-141-2/+2
|
* * changes: Update for 8.5.6 release.dgp2008-12-211-2/+2
| | | | | | | | | | | | | | * library/tclIndex: Removed reference to no-longer-extant procedure 'tclLdAout'. * doc/library.n: Corrected mention of 'auto_exec' to 'auto_execok'. [Patch 2114900] thanks to Stu Cassoff <stwo@users.sf.net> Backport of 2008-11-26 commit from Kevin Kenny. * win/tclWinThrd.c (TclpThreadCreate): We need to initialize the thread id variable to 0 as on 64 bit windows this is a pointer sized field while windows only fills it with a 32 bit value. The result is an inability to join the threads as the ids cannot be matched. Backport of 2008-10-13 commit from Pat Thoyts.
* optional argument format correctiondgp2008-12-151-2/+2
|
* fix [Bug 2308236] signature of Tcl_HashStats() wrongnijtmans2008-11-181-2/+2
|
* * doc/platform_shell.n: Fixed [Bug 2255235], reported by Ulrichandreas_kupries2008-11-101-4/+4
| | | | | | | | | * library/platform/pkgIndex.tcl: Ring <uring@users.sourceforge.net>. * library/platform/shell.tcl: Updated the LOCATE command in the * library/tm.tcl: package 'platform::shell' to handle the new form * unix/Makefile.in: of 'provide' commands generated by tm.tcl. Bumped * win/Makefile.in: package to version 1.1.4. Added cross-references to the relevant parts of the code to avoid future desynchronization.
* * doc/global.n: Correct false claim about [info locals].dgp2008-09-251-3/+4
|
* * doc/namespace.n: fix [Bug 2098441]Miguel Sofer2008-09-071-2/+2
|
* typodgp2008-08-271-2/+2
|
* Fix error in example. [Bug 2016740]dkf2008-07-151-2/+2
|
* Correct examples. [Bug 1982642]dkf2008-07-072-16/+29
|
* typodgp2008-06-301-2/+2
|
* * doc/ObjectType.3: Updated documentation of the Tcl_ObjTypedgp2008-06-301-36/+74
| | | | struct to match expectations of Tcl 8.5 [Bug 1917650].
* Tcl defines more than 7 Tcl_ObjTypes now, and we don't want to maintaindgp2008-06-271-3/+3
| | | | | this claim in the docs. Also revise false claim that a custom Tcl_ObjType requires calling Tcl_RegisterObjType().
* typosdgp2008-06-271-4/+4
|
* remove stray .REdgp2008-06-251-2/+1
|
* * doc/tm.n: Followup to changelog entry 2008-03-18 regardingandreas_kupries2008-06-171-9/+16
| | | | | | ::tcl::tm::Defaults. Updated the documentation to not only mention the new (underscored) form of environment variable names, but make it the encouraged form as well. See [Bug 1914604].
* Fix typo spotted by Steve Havelkadkf2008-04-181-2/+2
|
* Minor improvements/fixesdkf2008-03-261-8/+12
|
* Minor fixes to copyright declarations (spelling, consistency)dkf2008-03-2616-31/+31
|
* Clarified docs. [Bug 1899962]dkf2008-03-211-3/+8
|
* removed erroneous whitespacedkf2008-03-161-2/+2
|
* Clarified documentation of what happens with negative indices. [Bug 1905809]dkf2008-03-161-17/+22
| | | | Added example, tidied up formatting.
* * doc/info.n: Replaced {expand} with {8}.andreas_kupries2008-03-121-2/+2
|
* change http::geturl -keepalive default to 0 as it has poor true pipeline supporthobbs2008-03-121-3/+3
|
* * unix/Makefile.in (install-libraries): Bump http to 2.7hobbs2008-03-121-9/+25
| | | | | | | | | | | | * win/Makefile.in (install-libraries): Added -myaddr option to allow * library/http/http.tcl (http::geturl): control of selected socket * library/http/pkgIndex.tcl: interface. [Bug 559898] * doc/http.n, tests/http.test: Added -keepalive and -protocol 1.1 with chunked transfer encoding support. [Bug 1063703, 1470377, 219225] Added ability to override Host in -headers. [Bug 928154] Added -strict option to control URL validation on per-call basis. [Bug 1560506]
* * library/http/http.tcl (http::geturl): add -method option to supporthobbs2008-03-121-1/+6
| | | | | * tests/http.test (http-3.1): http PUT and DELETE requests. * doc/http.n: [Bug 1599901, 862554]