Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added cross references to manual pages that discuss specific variables created | dkf | 2008-08-27 | 2 | -4/+55 |
| | | | | by Tcl. | ||||
* | * doc/Exit.3: do not call Tcl_Finalize implicitly | hobbs | 2008-08-01 | 1 | -7/+3 |
| | | | | | | | * generic/tclEvent.c: on DLL_PROCESS_DETACH as it may lead * win/tclWin32Dll.c (DllMain): to issues and the user should be explicitly calling Tcl_Finalize before unloading regardless. Clarify the docs to note the explicit need in embedded use. | ||||
* | * doc/FileSystem.3: CONSTified many functions using Tcl_FileSystem | nijtmans | 2008-07-28 | 1 | -4/+4 |
| | | | | | | | | | | | * generic/tcl.decls: which all are supposed to be a constant, but * generic/tclDecls.h: this was not reflected in the API: * generic/tclFileSystem.h: Tcl_FSGetInternalRep * generic/tclIOUtil.c: Tcl_FSNewNativePath, Tcl_FSData * generic/tclPathObj.c: Tcl_FSRegister, Tcl_FSUnregister * generic/tclTest.c: Tcl_FSGetFileSystemForPath ... This change complies with TIP #24. ***POTENTIAL INCOMPATIBILITY*** | ||||
* | * doc/Object.3 CONSTified 3 functions using | nijtmans | 2008-07-27 | 2 | -6/+6 |
| | | | | | | | | | | | | | | | * doc/ObjectType.3 Tcl_ObjType which all are supposed * generic/tcl.decls to be a constant, but this was not * generic/tcl.h reflected in the API: * generic/tclDecls.h Tcl_ConvertToType * generic/tclObj.c Tcl_GetObjType * generic/tclCompCmds.c Tcl_RegisterObjType * generic/tclOOMethod.c Introduced a CONST86_RETURN, so extensions which * generic/tclTestobj.c use Tcl_ObjType directly can be modified to compile against both Tcl 8.5 and Tcl 8.6 tclDecls.h is re-generated with "make genstubs" This change complies with TIP #24 ***POTENTIAL INCOMPATIBILITY*** | ||||
* | CONSTified 4 functions in the Notifier which all have a Tcl_Time* in it which is | nijtmans | 2008-07-24 | 2 | -4/+4 |
| | | | | | | | | | | | supposed to be a constant, but this was not reflected in the API: Tcl_SetTimer Tcl_WaitForEvent Tcl_ConditionWait Tcl_SetMaxBlockTime Introduced a CONST86, so extensions which have their own Notifier (are there any?) can be modified to compile against both Tcl 8.5 and Tcl 8.6. This change complies with TIP #24 | ||||
* | TIP #304 implementation | ferrieux | 2008-07-21 | 1 | -1/+12 |
| | |||||
* | Fix error in example. [Bug 2016740] | dkf | 2008-07-15 | 1 | -2/+2 |
| | |||||
* | more consistent wrong # arg messages: change all messages containing ↵ | nijtmans | 2008-07-13 | 4 | -12/+12 |
| | | | | ?options? to the form ?-option value ...? | ||||
* | Tighten up language. | dkf | 2008-07-08 | 1 | -15/+16 |
| | |||||
* | Correct examples. [Bug 1982642] | dkf | 2008-07-07 | 2 | -17/+31 |
| | |||||
* | Improve [lindex] examples. | dkf | 2008-07-06 | 1 | -5/+24 |
| | |||||
* | typo | dgp | 2008-06-30 | 1 | -2/+2 |
| | |||||
* | Clean up typedef formatting | dkf | 2008-06-30 | 1 | -7/+11 |
| | |||||
* | * doc/ObjectType.3: Updated documentation of the Tcl_ObjType | dgp | 2008-06-30 | 1 | -36/+74 |
| | | | | struct to match expectations of Tcl 8.5 [Bug 1917650]. | ||||
* | Prepare Tcl's docs for life as 8.6 (remove out of date change bars, fix | dkf | 2008-06-29 | 79 | -836/+825 |
| | | | | typedefs, add a few missing bits) | ||||
* | Fix [Bug 2004256] | dkf | 2008-06-29 | 1 | -31/+49 |
| | |||||
* | Fix [Bug 2004480] | dkf | 2008-06-28 | 1 | -3/+3 |
| | |||||
* | Tcl defines more than 7 Tcl_ObjTypes now, and we don't want to maintain | dgp | 2008-06-27 | 1 | -3/+3 |
| | | | | | this claim in the docs. Also revise false claim that a custom Tcl_ObjType requires calling Tcl_RegisterObjType(). | ||||
* | typos | dgp | 2008-06-27 | 1 | -4/+4 |
| | |||||
* | remove stray .REcore_8_6_a1 | dgp | 2008-06-25 | 1 | -2/+1 |
| | |||||
* | bug #1995063 fix examples and comment on eof use. | patthoyts | 2008-06-24 | 1 | -5/+33 |
| | |||||
* | Make [next] work as described in TIP. [Bug 1998244] | dkf | 2008-06-19 | 1 | -2/+2 |
| | |||||
* | * doc/tm.n: Followup to changelog entry 2008-03-18 regarding | andreas_kupries | 2008-06-17 | 1 | -8/+15 |
| | | | | | | ::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]. | ||||
* | TIP 285 Implementation | Joe Mistachkin | 2008-06-13 | 3 | -12/+69 |
| | |||||
* | Implementation of TIP #257. Incomplete due to missing Win build support. | dkf | 2008-05-31 | 10 | -4/+1608 |
| | |||||
* | Return type of Tcl_AppendPrintfToObj is void. (spotted by Torsten Berg) | patthoyts | 2008-05-07 | 1 | -2/+2 |
| | |||||
* | doc/Ensemble.3: Fix a typo: s/defiend/defined/ | georgeps | 2008-04-20 | 1 | -2/+2 |
| | | | | Thanks to hat0 for spotting this. | ||||
* | Fix typo spotted by Steve Havelka | dkf | 2008-04-18 | 1 | -2/+2 |
| | |||||
* | Minor improvements/fixes | dkf | 2008-03-26 | 1 | -8/+12 |
| | |||||
* | Minor fixes to copyright declarations (spelling, consistency) | dkf | 2008-03-26 | 16 | -31/+31 |
| | |||||
* | Clarified docs. [Bug 1899962] | dkf | 2008-03-21 | 1 | -3/+8 |
| | |||||
* | removed erroneous whitespace | dkf | 2008-03-16 | 1 | -2/+2 |
| | |||||
* | Clarified documentation of what happens with negative indices. [Bug 1905809] | dkf | 2008-03-16 | 1 | -17/+22 |
| | | | | Added example, tidied up formatting. | ||||
* | * doc/info.n: Replaced {expand} with {8}. | andreas_kupries | 2008-03-12 | 1 | -2/+2 |
| | |||||
* | change http::geturl -keepalive default to 0 as it has poor true pipeline support | hobbs | 2008-03-12 | 1 | -3/+3 |
| | |||||
* | * unix/Makefile.in (install-libraries): Bump http to 2.7 | hobbs | 2008-03-12 | 1 | -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 support | hobbs | 2008-03-12 | 1 | -1/+6 |
| | | | | | * tests/http.test (http-3.1): http PUT and DELETE requests. * doc/http.n: [Bug 1599901, 862554] | ||||
* | * doc/http.n: Revised to indicate that [package require http 2.5.5] | dgp | 2008-03-10 | 1 | -3/+3 |
| | | | | is needed to get all the documented commands ([http::meta]). | ||||
* | Minor tidying up. [Bug 1909019] | dkf | 2008-03-06 | 1 | -22/+24 |
| | |||||
* | bug #705956 - fix inverted logic when cleaning up socket error in geturl. ↵ | patthoyts | 2008-02-27 | 1 | -1/+8 |
| | | | | Document meta accessor. | ||||
* | * doc/clock.n: Corrected minor indentation gaffe in the | Kevin B Kenny | 2008-02-27 | 1 | -0/+1 |
| | | | | | | | | | | | | penultimate paragraph. [Bug 1898025] * generic/tclClock.c (ParseClockFormatArgs): Changed to check that the clock value is in the range of a 64-bit integer. [Bug 1862555] * library/clock.tcl (::tcl::clock::format, ::tcl::clock::scan, ::tcl::clock::add, ::tcl::clock::LocalizeFormat): Fixed bugs in caching of localized strings that caused weird results when localized date/time formats were used. [Bug 1902423] * tests/clock.test (clock-61.*, clock-62.1): Regression tests for [Bug 1862555] and [Bug 1902423]. | ||||
* | doc/clock.n - minor documentation fix in %N format group | Kevin B Kenny | 2008-02-06 | 1 | -2/+3 |
| | |||||
* | Improve Tcl macros to make Ttk documentation work better. [Tk Bug 1876493] | dkf | 2008-01-29 | 1 | -14/+12 |
| | |||||
* | Minor fixes for indented paragraph handling | dkf | 2008-01-18 | 3 | -12/+34 |
| | |||||
* | Corrected formatting of manual | dkf | 2008-01-18 | 1 | -7/+12 |
| | |||||
* | better wording for arg handling in proc.n (tclguy) | Miguel Sofer | 2008-01-17 | 1 | -3/+10 |
| | |||||
* | * doc/proc.n: changed wording for access to non-local variables; | Miguel Sofer | 2008-01-16 | 1 | -5/+4 |
| | | | | | added mention to [namespace upvar]. Lame attempt at dealing with documentation [Bug 1872708] | ||||
* | Add a missing be to fix a typo. | georgeps | 2008-01-09 | 1 | -2/+2 |
| | |||||
* | Fixed documentation bug reported on tcl-core, and reordered documentation | dkf | 2008-01-02 | 1 | -15/+12 |
| | | | | to discourage people from using the hex formatter that is hardly ever useful. | ||||
* | Clarified meaning of dictionary values following discussion on comp.lang.tcl. | dkf | 2007-12-31 | 1 | -5/+10 |
| |