summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* * [Patch 505630] Updated interfaces of generic/tclBasic.cc (TIP 27).dgp2002-01-254-10/+10
| | | | | | | * [Patch 506818] Updated interfaces of generic/tclHash.c (TIP 27). * [Patch 506807] Updated interfaces of generic/tclObj.c (TIP 27). * [Patch 507304] Updated interfaces of win/tclWin32.c (TIP 27). * Update all callers.
* * Updated interfaces of generic/tclEncoding, generic/tclFilename.c,dgp2002-01-2510-37/+37
| | | | | | | | | | | generic/tclIOUtil.c, generic/tclPipe.c, generic/tclResult.c, generic/tclUtil.c, generic/tclVar.c and mac/tclMacResource.c according to TIP 27. Tcl_TranslateFileName rewritten as wrapper around VFS-aware version. Updated callers. ***POTENTIAL INCOMPATIBILITY*** Includes source incompatibilities: argv arguments of Tcl_Concat, Tcl_JoinPath, Tcl_OpenCommandChannel, Tcl_Merge; argvPtr arguments of Tcl_SplitList and Tcl_SplitPath.
* * unix/mkLinks: Regenerated.andreas_kupries2002-01-232-10/+13
| | | | | | | | * doc/CrtChannel.3: * doc/ChnlStack.3: Moved documentation for 'Tcl_GetTopChannel' from 'CrtChannel' to 'ChnlStack'. Added documentation of 'Tcl_GetStackedChannel'. Bug #506147 reported by Mark Patton <msp@users.sourceforge.net>.
* * Updated socket interfaces according to TIP 27. Updated callers.dgp2002-01-233-7/+7
|
* doc correctiondgp2002-01-171-2/+2
|
* * More TIP 27 updates in tclIOUtil.c and tclIndexObj.c that weredgp2002-01-173-10/+10
| | | | | | | overlooked before. Updated callers. ***POTENTIAL INCOMPATIBILITY*** Includes a source incompatibility in the tablePtr arguments of the Tcl_GetIndexFromObj* routines.
* * Updated APIs in generic/tclUtf.c and generic/tclRegexp.c accordingdgp2002-01-172-12/+20
| | | | to the guidelines of TIP 27. Updated callers.
* * Updated APIs in generic/tclParse.c according to the guidelinesdgp2002-01-171-2/+2
| | | | of TIP 27. Updated callers.
* * Updated APIs in generic/tclHistory.c according to the guidelinesdgp2002-01-162-14/+14
| | | | | | | | | | of TIP 27. * Updated APIs in generic/tclInterp.c according to the guidelines of TIP 27. ***POTENTIAL INCOMPATIBILITY*** Includes a source incompatibility in the targetCmdPtr arguments of the Tcl_GetAlias* routines.
* * Corrected documentation for Tcl_ErrnoMsg; it takes an integerdgp2002-01-151-7/+11
| | | | argument. Thanks to Georgios Petasis. [Bug 468183]
* * Updated APIs in generic/tclIOUtil.c and generic/tclPosixStr.cdgp2002-01-156-16/+16
| | | | according to the guidelines of TIP 27. Updated callers. [Patch 499196]
* doc/StringObj.3: added Tcl_GetUnicodeFromObj docs.hobbs2002-01-151-2/+13
|
* * Updated APIs in the file generic/tclIO.c according to the guidelinesdgp2002-01-152-62/+57
| | | | | | | | | | | of TIP 27. Several minor documentation corrections as well. * Updated channel driver interface according to the guidelines of TIP 27. See also [Bug 500348]. * Moved Tcl_EolTranslation enum declaration from generic/tcl.h to generic/tclInt.h (renamed to TclEolTranslation). It is not used anywhere in Tcl's public interface.
* typo correctiondgp2002-01-141-2/+2
|
* * Updated APIs in the file generic/tclIndexObj.cdgp2002-01-142-6/+6
| | | | according to the guidelines of TIP 27.
* Updated APIs in the files */tcl*Load*.c according to the guidelinesKevin B Kenny2002-01-091-2/+2
| | | | of TIP 27.
* * doc/Tcl_Main.3:dgp2002-01-051-15/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclMain.c: Substantial rewrite and expanded documentation of Tcl_Main to correct a number of bugs and flaws: * Interactive Tcl_Main can now enter a main loop, exit that loop and continue interactive operations. The loop may even exit in the midst of interactive command typing without loss of the partial command. [Bugs 486453, 474131] * Tcl_Main now gracefully handles deletion of its master interpreter. * Interactive Tcl_Main can now operate with non-blocking stdin * Interactive Tcl_Main can now detect EOF on stdin even in mid-command. [Bug 491341] * Added VFS-aware internal routines for managing the startup script selection. * Tcl variable 'tcl_interactive' is now linked to C variable 'tty' so that one can disable/enable interactive prompts at the script level when there is no startup script. This is meant for use by the test suite. * Consistent use of the Tcl libraries standard channels as returned by Tcl_GetStdChannel(); as opposed to the channels named 'stdin', 'stdout', and 'stderr' in the master interp, which can be different or unavailable. * Tcl_Main now calls Tcl_Exit() if evaluation of [exit] in the master interpreter returns, assuring Tcl_Main does not return. * Documented Tcl_Main's absence from public stub table * Documented that Tcl_Main does not return. * Documented Tcl variables set by Tcl_Main. * All prompts are done from a single procedure, Prompt. * Use of Tcl_Obj-enabled interfaces everywhere. * generic/tclInt.decls (TclGetStartupScriptPath, TclSetStartupScriptPath): New internal VFS-aware routines for managing the startup script of Tcl_Main. * generic/tclIntDecls.h: * generic/tclStubInit.c: make genstubs * generic/tclTest.c (TestsetmainloopCmd,TestexitmainloopCmd, Tcltest_Init,TestinterpdeleteCmd): * tests/main.test (new): Added new file to test suite that thoroughly tests generic/tclMain.c; added some new test commands for testing Tcl_SetMainLoop().
* * doc/FileSystem.3:dgp2002-01-031-3/+3
| | | | | * generic/tclIOUtil.c: Updated some old uses of "fileName" to new VFS terminology, "pathPtr".
* * generic/tclCkalloc.c (MemoryCmd, TclFinalizeMemorySubsystem):dgp2001-12-282-29/+49
| | | | | | | | | | | | | | | | | | | Added the [memory onexit] command, intended to replace [checkmem]. * doc/DumpActiveMemory.3: * doc/memory.n: Updated documentation for [memory] and related matters. [Bug 487677] * mac/tclMacBOAMain.c (Tcl_Main, CheckmemCmd): Removed all the machinery for the [checkmem] command that is completely duplicated by code in generic/tclCkalloc.c. * generic/tclBinary.c: * generic/tclListObj.c: * generic/tclObj.c: * generic/tclStringObj.c: Removed references to [checkmem] in comments, referencing [memory active] instead, since it is documented.
* docs and comments corrections [Bug 493412]Miguel Sofer2001-12-141-4/+4
|
* * Repaired some fractured phrasing.dgp2001-12-141-2/+2
|
* docd TCL_DYNAMIC use. [Patch #483989] (porter)hobbs2001-12-131-1/+10
|
* * Several typo and formatting corrections discovereddgp2001-12-1013-66/+33
| | | | during conversion to TMML. Thanks to Joe English. [Patch 490514]
* fixed typodgp2001-12-071-2/+2
|
* * fixed typo: index -> lindexdgp2001-12-051-2/+2
|
* Improved expr documentation.dkf2001-12-031-16/+18
|
* Manpage fix (RE syntax now in separate page.)dkf2001-11-282-10/+12
| | | | Resolves Bug486159 reported by Larry Virden.
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-231-2/+2
| | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details
* added TIP#73 patch #483500 from Kevin Kenny.hobbs2001-11-211-0/+53
| | | | This deprecates TclpGetTime in favor of new Tcl_GetTime.
* win fs fixesvincentdarley2001-11-192-12/+14
|
* Changes due to TIP#68; memory handling in variable traces is now correct!dkf2001-11-191-7/+41
|
* minor doc comment fixeshobbs2001-11-1410-23/+26
|
* added lset.n lset docs with xref and updated lindex of TIPs#22,33,45 by Kennyhobbs2001-11-1410-27/+219
|
* correct nroff format problemshobbs2001-11-124-10/+10
|
* fixed winhelp generation problems #480268hobbs2001-11-104-46/+47
|
* file copy soft link docsvincentdarley2001-11-021-10/+12
|
* * doc/ObjectType.3: Minor documentation fix, reported by Davidandreas_kupries2001-10-221-2/+2
| | | | N. Welton <davidw@users.sourceforge.net> directly to me.
* * doc/open.n: moved all fconfigure option docs to fconfigure.nhobbs2001-10-152-52/+205
| | | | * doc/fconfigure.n: added serial config options
* small fs fixesvincentdarley2001-10-151-2/+2
|
* * Corrected typos in doc/RegExp.3macosx_8_4_branchpointdgp2001-10-141-2/+2
|
* Typo-fixdkf2001-10-041-2/+2
|
* fs doc improvementvincentdarley2001-09-291-4/+14
|
* Edited docs of Tcl_GetNameOfExecutable [Bug 219215]Miguel Sofer2001-09-281-2/+4
|
* Fixed Bug #465674 reported by me. [lsort -index end-1] now behaves sensibly...dkf2001-09-281-6/+21
|
* * More CONST poisoningdgp2001-09-281-5/+5
| | | | | | fixes from the 2001-09-24 TIP 27 changes. CONST-ified Tcl_FSLoadFile and TclpLoadFile. Report and patch from Kevin Kenny. [Bug 465833]
* * Updated out-of-date reference to #define GUARD_SIZE.dgp2001-09-271-3/+4
|
* * Updated APIs indgp2001-09-271-3/+3
| | | | | generic/tclProc.c and generic/tclVar.c according to the guidelines of TIP 27. [Patch 465442]
* * doc/fileevent.n: Accepted [Patch #465279] adding an example toandreas_kupries2001-09-271-1/+16
| | | | | | the fileevent manpage. Minor modifications to get a better formatting. Report and patch by David N. Welton <davidw@users.sourceforge.net>.
* * Vince Darley reports the 2001-09-24 TIP 27 changes left the windgp2001-09-271-2/+2
| | | | directory CONST poisoned. These changes should fix that.
* * Updated APIs in generic/tclGet.cdgp2001-09-251-2/+2
| | | | according to the guidelines of TIP 27. [Patch 464674]