summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Added a missing bold highlightdkf2006-11-201-2/+2
|
* Added more examplesdkf2006-11-162-19/+79
|
* Convert \fP to \fR for easier manual page scrapingdkf2006-11-1516-208/+208
|
* Implemented [string reverse].dkf2006-11-091-2/+9
| | | | Finalizes basic TIP#272 implementation.
* Implemented [lreverse] from TIP#272dkf2006-11-091-0/+31
|
* * doc/ParseCmd.3, doc/Tcl.n, doc/eval.n, doc/exec.n:hobbs2006-11-037-18/+18
| | | | | | | | | | | | | | | | | | * doc/fconfigure.n, doc/interp.n, doc/unknown.n: * library/auto.tcl, library/init.tcl, library/package.tcl: * library/safe.tcl, library/tm.tcl, library/msgcat/msgcat.tcl: * tests/all.tcl, tests/basic.test, tests/cmdInfo.test: * tests/compile.test, tests/encoding.test, tests/execute.test: * tests/fCmd.test, tests/http.test, tests/init.test: * tests/interp.test, tests/io.test, tests/ioUtil.test: * tests/iogt.test, tests/namespace-old.test, tests/namespace.test: * tests/parse.test, tests/pkg.test, tests/pkgMkIndex.test: * tests/proc.test, tests/reg.test, tests/trace.test: * tests/upvar.test, tests/winConsole.test, tests/winFCmd.test: * tools/tclZIC.tcl: * generic/tclParse.c (Tcl_ParseCommand): Replace {expand} with {*} officially (TIP #293). Leave -DALLOW_EXPAND=0|1 option to keep {expand} syntax for transition users. [Bug 1589629]
* * doc/Encoding.3: Missing doc updates (mostly Table ofdgp2006-10-185-9/+9
| | | | | | | * doc/Ensemble.3: Contents) exposed by `make checkdoc` * doc/FileSystem.3: * doc/GetTime.3: * doc/PkgRequire.3:
* * doc/UpVar.3: brough the docs in accordance to the code. EverMiguel Sofer2006-10-091-4/+5
| | | | | | since 8.0, Tcl_UpVar(2)? accepts TCL_NAMESPACE_ONLY as a flag value, and var-3.4 tests for proper behaviour. The docs only allowed 0 and TCL_GLOBAL_ONLY.
* TIP #275: Support unsigned values in binary commandpatthoyts2006-10-061-9/+14
|
* nroff typohobbs2006-10-051-2/+2
|
* * doc/Eval.3 (TclEvalObjv): added note on refCount management forMiguel Sofer2006-10-011-1/+4
| | | | the elements of objv, [Bug #730244].
* TIP 27 changes for Tcl_CreateEncodingKevin B Kenny2006-09-261-3/+3
|
* another nitdgp2006-09-251-2/+2
|
* * doc/package.n: Fixed nits reported by Daniel Steffen in theandreas_kupries2006-09-251-4/+4
| | | | TIP#268 changes.
* TIP#268 IMPLEMENTATIONandreas_kupries2006-09-222-24/+133
| | | | | | | | | | | | | | | | | | | | * generic/tclDecls.h: Regenerated from tcl.decls. * generic/tclStubInit.c: * doc/PkgRequire.3: Documentation of extended API, * doc/package.n: extended testsuite. * tests/pkg.test: * generic/tcl.decls: Implementation. * generic/tclBasic.c: * generic/tclConfig.c: * generic/tclInt.h: * generic/tclPkg.c: * generic/tclTest.c: * generic/tclTomMathInterface.c: * library/init.tcl: * library/package.tcl: * library/tm.tcl:
* * tests/msgcat.test: Bumped version in auxiliary files as well.andreas_kupries2006-09-111-1/+1
| | | | * doc/msgcat.n:
* * doc/tcltest.n: Bump to version tcltest 2.3.0 to accountdgp2006-09-111-3/+3
| | | | | | | | | * library/tcltest/pkgIndex.tcl: for new "-verbose line" feature. * library/tcltest/tcltest.tcl: * unix/Makefile.in: * win/Makefile.in: * win/makefile.bc: * win/makefile.vc:
* * library/msgcat/msgcat.tcl (msgcat::Init): on Darwin, add fallback ofdas2006-09-101-2/+4
| | | | | | | | | | | | | | | | | | * tests/msgcat.test: default msgcat locale to * unix/tclUnixInit.c (TclpSetVariables): current CFLocale identifier if available (via private ::tcl::mac::locale global, set at interp init when on Mac OS X 10.3 or later with CoreFoundation). * library/tcltest/tcltest.tcl: add 'line' verbose level: prints source * doc/tcltest.n: file line information of failing tests. * macosx/Tcl.xcodeproj/project.pbxproj: add new tclUnixCompat.c file; revise tests target to use new tcltest 'line' verbose level. * unix/configure.in: add descriptions to new AC_DEFINEs for MT-safe. * unix/tcl.m4: add caching to new SC_TCL_* macros for MT-safe wrappers. * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* typodgp2006-09-051-1/+1
|
* correct package examplehobbs2006-09-041-3/+4
|
* bugfix, docs clarification and new tests for 'namespace upvar' [Bug 1546833]Miguel Sofer2006-08-261-3/+6
|
* Make [expr] use in examples more idiomatic [Bug 1526581]dkf2006-08-096-30/+30
|
* fix indenting with spaces i.s.o tabsnijtmans2006-08-031-2/+2
|
* two minor doc fixesnijtmans2006-08-032-4/+4
|
* Bug 1426279Kevin B Kenny2006-07-311-0/+9
|
* Fix typo [Bug 1496886]jenglish2006-07-301-2/+2
|
* fix errors from 'make html'das2006-07-282-4/+4
|
* One stray CONST that escaped the CONST->const conversion.dgp2006-06-201-2/+2
|
* Added examples after prompting on the Tcler's chat.dkf2006-06-142-2/+15
|
* * doc/GetStdChan.3: Added recommendation that each call todgp2006-06-061-1/+11
| | | | Tcl_SetStdChannel() be accompanied by a call to Tcl_RegisterChannel().
* Documentation improvements (including Tcl_Realloc(NULL,x) behaviour)dkf2006-06-051-4/+6
|
* Typo. [Bug 1494160]dkf2006-05-241-2/+2
|
* Minor doc improvementsdkf2006-05-232-39/+39
|
* * generic/tclBasic.c (ExprSrandFunc): Restore acceptance of wide/bigdgp2006-05-041-4/+3
| | | | * doc/mathfunc.n: integer values by srand() [Bug 1480509].
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-264-60/+98
| | | | | | | | * doc/expr.n: * doc/format.n: * doc/mathfunc.n: * doc/scan.n: * doc/string.n:
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-251-38/+28
| | | | | * doc/format.n: * doc/scan.n:
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-252-100/+104
| | | | | | | | * doc/scan.n: * generic/tclScan.c: [scan $s %u] is documented to accept only * tests/scan.test: decimal formatted integers. Fixed code to match.
* more fine-tuning of the revised docsdgp2006-04-181-14/+11
|
* formatting fixes and note change that ::tcl_precision is now per-threaddgp2006-04-181-2/+11
| | | | instead of per-process.
* Minor fixes post-review.dkf2006-04-181-5/+8
|
* * doc/IntObj.3: Documentation changes to account for TIP 237 changes.dgp2006-04-172-70/+97
| | | | * doc/Object.3: [Bug 1446971]
* fix make html errorsdas2006-04-123-8/+8
|
* * 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]
* * doc/CrtChannel.3: Added TCL_CHANNEL_VERSION_5, made itandreas_kupries2006-03-271-5/+8
| | | | | | | | | | | | | | * generic/tcl.h: the version where the "truncateProc" * generic/tclIO.c: is defined at, and moved all channel * generic/tclIOGT.c: drivers of Tcl to v5. * generic/tclIORChan.c: * unix/tclUnixChan.c: * unix/tclUnixPipe.c: * win/tclWinChan.c: * win/tclWinConsole.c: * win/tclWinPipe.c: * win/tclWinSerial.c: * win/tclWinSock.c:
* fix to two filesystem issuesvincentdarley2006-03-191-2/+3
|
* * doc/chan.n: Updated with documentation for the commands 'chanandreas_kupries2006-03-172-6/+377
| | | | | | | create' and 'chan postevent' (TIP #219). * doc/refchan.n: New file. Documentation of the command handler API for reflected channels (TIP #219).
* * doc/open.n: Documented the changed behaviour of 'a'ppend mode.andreas_kupries2006-03-161-2/+2
|
* * 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].
* * doc/clock.n: Removed double-quotes around section title NAME. not needed.andreas_kupries2006-03-141-1/+1
| | | | | * unix/installManpage: Reverted part to handle double-quotes in section NAME, chokes older sed installations.
* TIP#215 IMPLEMENTATIONdgp2006-02-091-2/+8
| | | | | | | | | | * doc/incr.n: Revised [incr] to auto-initialize when varName * generic/tclExecute.c: argument is unset. [Patch 1413115]. * generic/tclVar.c: * tests/compile.test: * tests/incr-old.test: * tests/incr.test: * tests/set.test: