summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* typodgp2006-02-081-2/+2
|
* Updates post-reviewdkf2006-02-082-34/+22
|
* TIP#258 IMPLEMENTATIONdgp2006-02-082-7/+106
| | | | | | | | | | | | | | | | | | | | | * doc/Encoding.3: New subcommand [encoding dirs]. * doc/encoding.n: New routine Tcl_GetEncodingNameFromEnvironment. * generic/tcl.decls: Made public: * generic/tclBasic.c: TclGetEncodingFromObj * generic/tclCmdAH.c: -> Tcl_GetEncodingFromObj * generic/tclEncoding.c:TclGetEncodingSearchPath * generic/tclInt.decls: -> Tcl_GetEncodingSearchPath * generic/tclInt.h: TclSetEncodingSearchPath * generic/tclTest.c: -> Tcl_SetEncodingSearchPath * library/init.tcl: Removed commands: * tests/cmdAH.test: [tcl::unsupported::EncodingDirs] * tests/encoding.test: [testencoding path] (Tcltest) * unix/tclUnixInit.c: [Patch 1413934]. * win/tclWinInit.c: * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c:
* TIP#194 IMPLEMENTATIONdgp2006-02-012-5/+72
| | | | | | | | | | | * doc/apply.n: (New file) New command [apply]. [Patch 944803]. * doc/uplevel.n: * generic/tclBasic.c: * generic/tclInt.h: * generic/tclProc.c: * tests/apply.test: (New file) * tests/proc-old.test: * tests/proc.test:
* TIP#181 IMPLEMENTATIONdgp2006-02-013-12/+42
| | | | | | | | | | | | | * doc/Namespace.3: New command [namespace unknown]. New public * doc/namespace.n: C routines Tcl_(Get|Set)NamespaceUnknownHandler. * doc/unknown.n: [Patch 958222]. * generic/tcl.decls: * generic/tclBasic.c: * generic/tclInt.h: * generic/tclNamesp.c: * tests/namespace.test: * generic/tclDecls.h: make genstubs * generic/tclStubInit.c:
* TIP#250 IMPLEMENTATIONdgp2006-02-011-2/+9
| | | | | | | | | * doc/namespace.n: New command [namespace upvar]. [Patch 1275435] * generic/tclInt.h: * generic/tclNamesp.c: * generic/tclVar.c: * tests/namespace.test: * tests/upvar.test:
* Fix [Bug 1415725]dkf2006-01-261-2/+2
|
* Clarify doc of variable substitutiondkf2005-12-191-2/+3
|
* Minor clarificationdkf2005-12-161-2/+4
|
* Bug 1378818Kevin B Kenny2005-12-121-3/+3
|
* Improved documentation on topic of asynch sockets in response to queries ondkf2005-12-072-4/+14
| | | | the Tcler's Chat.
* Bug 1359183Kevin B Kenny2005-11-181-0/+7
|
* doc changes with 1162286 fixdgp2005-11-091-8/+1
|
* Improve the documentation of [binary scan] a little.dkf2005-10-211-18/+20
|
* * doc/CrtChannel.3: Fixed [SF Tcl Bug 1104682], by application ofandreas_kupries2005-10-051-9/+11
| | | | | David Welton's patch for it, and added a note about wideSeekProc.
* scan %[] requires "one or more chars" [Bug 1277503]hobbs2005-10-051-5/+3
|
* Fixed a typo.davidw2005-10-011-2/+2
|
* implementation for TIP #255, expr min/maxhobbs2005-09-291-8/+19
|
* * doc/ParseCmd.3: copy/paste fix [Bug 1292427]Miguel Sofer2005-09-151-2/+2
|
* * generic/tcl.h: Explicitly standardized on the use of stdarg.hdgp2005-09-135-11/+11
| | | | | | | | | | | | | | | | | * generic/tclBasic.c: conventions for functions with variable number * generic/tclInt.h: of arguments. Support for varargs.h has been * generic/tclPanic.c: implicitly gone for some time now. All * generic/tclResult.c: TCL_VARARGS* macros purged from Tcl sources, * generic/tclStringObj.c: leaving only some deprecated #define's * tools/genStubs.tcl: in tcl.h for the sake of older extensions. * generic/tclDecls.h: make genstubs * doc/AddErrInfo.3: Replaced all documented requirement for use * doc/Eval.3: of TCL_VARARGS_START() with requirement for * doc/Panic.3: use of va_start(). * doc/SetResult.3: * doc/StringObj.3:
* TIP #254 implementationdkf2005-09-081-5/+92
| | | | Still missing additional tests.
* allow NULL interp in Tcl_FSMatchInDirectoryvincentdarley2005-08-311-6/+8
|
* TIP#219 IMPLEMENTATIONandreas_kupries2005-08-241-0/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | * doc/SetChanErr.3: ** New File **. Documentation of the new channel API functions. * generic/tcl.decls: Stub declarations of the new channel API. * generic/tclDecls.h: Regenerated * generic/tclStubInit.c: * tclIORChan.c: ** New File **. Implementation of the reflected channel. * generic/tclInt.h: Integration of reflected channel and new error * generic/tclIO.c: propagation into the generic I/O core. * generic/tclIOCmd.c: * generic/tclIO.h: * library/init.tcl: * tests/io.test: Extended testsuite. * tests/ioCmd.test: * tests/chan.test: * generic/tclTest.c: * generic/tclThreadTest.c: * unix/Makefile.in: Integration into the build machinery. * win/Makefile.in: * win/Makefile.vc:
* typo fixesdgp2005-08-051-6/+6
|
* Doc clarificationdkf2005-07-121-2/+3
|
* Improve the [chan] documentationmsofer_wcodes_20050611dkf2005-06-101-44/+513
|
* fix to race condition in file mkdir and fix to glob documentationvincentdarley2005-06-091-7/+4
|
* Small doc improvements [Bug 1211078] etc.dkf2005-06-092-9/+12
|
* Stick to TCL_CHANNEL_VERSION_4; it's all in alpha anyway!dkf2005-06-071-6/+4
|
* TIP#208 implementationdkf2005-06-063-25/+197
| | | | It's crude (especially in the tests and docs department) and incomplete (no truncation on non-POSIX platforms).
* Implementation of TIP#241 from Joe Mistachkindkf2005-06-013-5/+22
| | | | Also compilation of [switch -glob -nocase] from Donal Fellows
* TIP#229 implementationdkf2005-05-302-8/+41
|
* Tab characters are important in *roff tables...dkf2005-05-261-7/+7
|
* TIP#182 IMPLEMENTATION [Patch 1165062]dgp2005-05-251-8/+17
| | | | | | | * doc/mathfunc.n: New built-in math function bool(). * generic/tclBasic.c: * tests/expr.test: * tests/info.test:
* * doc/expr.n:das2005-05-232-9/+9
| | | | * doc/string.n: fixed roff syntax complaints from 'make html'.
* minor phrasing improvements.dgp2005-05-181-3/+3
|
* * doc/BoolObj.3: Rewrite of documentation dropping many detailsdgp2005-05-181-43/+39
| | | | | about the internals of Tcl_Objs. Shorter documentation focuses on the function and use of the routines.
* And another silly mistake...dkf2005-05-161-2/+2
|
* Fixed minor mistake in the example (not following best-practice as dkf2005-05-161-2/+2
| | | | described in the Portability section)
* changed NAME to match the name of the page.Kevin B Kenny2005-05-121-2/+2
|
* Corrected example that confused [namespace which] and [namespace origin]dgp2005-05-121-2/+2
|
* Merged kennykb-numerics-branch back to the head; TIPs 132 and 232Kevin B Kenny2005-05-1083-219/+375
|
* * doc/DString.3: Eliminated use of identifier "string" in Tcl'sdgp2005-05-0312-142/+147
| | | | | | | | | | | | | * doc/Environment.3: public C API to avoid conflict/confusion with * doc/Eval.3: the std::string of C++. * doc/ExprLong.3, doc/ExprLongObj.3, doc/GetInt.3, doc/GetOpnFl.3: * doc/ParseCmd.3, doc/RegExp.3, doc/SetResult.3, doc/StrMatch.3: * doc/Utf.3, generic/tcl.decls, generic/tclBasic.c, generic/tclEnv.c: * generic/tclGet.c, generic/tclParse.c, generic/tclParseExpr.c: * generic/tclRegexp.c, generic/tclResult.c, generic/tclUtf.c: * generic/tclUtil.c, unix/tclUnixChan.c: * generic/tclDecls.h: `make genstubs`
* TIP#176 IMPLEMENTATION [Patch 1165695]dgp2005-04-2910-52/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclUtil.c: Extended TclGetIntForIndex to recognize index formats including end+integer and integer+/-integer. * generic/tclCmdMZ.c: Extended the -start switch of [regexp] and [regsub] to accept all index formats known by TclGetIntForIndex. * doc/lindex.n: Updated docs to note new index formats. * doc/linsert.n: * doc/lrange.n: * doc/lreplace.n: * doc/lsearch.n: * doc/lset.n: * doc/lsort.n: * doc/regexp.n: * doc/regsub.n: * doc/string.n: * tests/cmdIL.test: Updated tests. * tests/compile.test: * tests/lindex.test: * tests/linsert.test: * tests/lrange.test: * tests/lreplace.test: * tests/lsearch.test: * tests/lset.test: * tests/regexp.test: * tests/regexpComp.test: * tests/string.test: * tests/stringComp.test: * tests/util.test:
* TIP#183 IMPLEMENTATION [Patch 577093]dgp2005-04-271-9/+14
| | | | | | | | | * generic/tclIOUtil.c (TclGetOpenModeEx): New routine. * generic/tclInt.h: * generic/tclIO.c (Tcl_OpenObjCmd): Support for "b" and * doc/open.n: "BINARY" in "access" argument to [open]. * tests/ioCmd.test:
* The 2005-04-21 changes to Tcl_GetBooleanFromObj were done to bringdgp2005-04-221-18/+28
| | | | | | | | | | | | | | | | | | | | | | | | | it into agreement with its docs. Further investigation reveals it was the docs that were incorrect. * doc/BoolObj.3: Corrections to the documentation of Tcl_GetBooleanFromObj to bring it into agreement with what this public interface has always done, including noting the difference in function between Tcl_GetBooleanFromObj and Tcl_GetBoolean. * generic/tclGet.c: Revised Tcl_GetBoolean to no longer be a wrapper around Tcl_GetBooleanFromObj (different function!). * generic/tclObj.c: Removed TclGetTruthValueFromObj routine that was added yesterday. Revisions so that only Tcl_GetBoolean-approved values get the "boolean" Tcl_ObjType. This retains the fix for [Bug 1187123]. * generic/tclInt.h: Revert most recent change. * generic/tclBasic.c: * generic/tclCompCmds.c: * generic/tclDictObj.c: * generic/tclExecute.c: * tests/obj.test:
* * doc/GetInt.3: Convert argument "string" to "str" to agree with code.dgp2005-04-211-21/+23
| | | | | | | Also clarified a few details on int and double formats. * generic/tclGet.c: Radical code simplification. Converted most Tcl_GetFoo() routines into wrappers around Tcl_GetFooFromObj(). Reduces code duplication, and the resulting potential for inconsistency.
* Also improved [fcopy] docsdkf2005-04-131-13/+24
|
* Improve documentation of -encoding binary option to [fconfigure].dkf2005-04-131-3/+6
|
* Purge old and inaccurate .VS/.VE macros.dkf2005-04-0658-328/+67
|