summaryrefslogtreecommitdiffstats
path: root/doc/Tcl_Main.3
Commit message (Collapse)AuthorAgeFilesLines
* Fix [426679ef7d]: Having man.macros after .TH breaks rendering on OpenBSD ↵jan.nijtmans2013-11-051-1/+1
|\ | | | | | | and possibly others.
| * Fix [426679ef7d]: Having man.macros after .TH breaks rendering on OpenBSD ↵jan.nijtmans2013-11-051-1/+1
| | | | | | | | and possibly others.
* | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ \ | |/ | | cause more harm than good. Purged them (except in zlib files).
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ | | | | | | more harm than good. Purged them.
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | more harm than good. Purged them.
| * | optional argument format correctiondgp2008-12-151-2/+2
| | |
* | | [FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for ↵nijtmans2010-11-041-2/+3
| | | | | | | | | | | | Tcl on MSVC++
* | | * doc/NRE.3: Formatting errors found by `make html`dgp2008-12-191-2/+2
| | | | | | | | | | | | | | | * doc/Tcl_Main.3: * doc/zlib.n:
* | | TIP #338 IMPLEMENTATIONdgp2008-12-151-19/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/AppInit.c: Made routines Tcl_SetStartupScript and * doc/Tcl_Main.3: Tcl_GetStartupScript public. Removed all * generic/tcl.h: internal stub access to Tcl*Startup* routines, * generic/tclInt.decls: and removed their implementations. Their * generic/tclMain.c: function can now be completely performed with the new public interface. *** POTENTIAL INCOMPATIBILITY for callers of the internal Tcl*Startup* routines. *** * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c:
* | | Improve clarity of formatting.dkf2008-10-171-1/+3
| | |
* | | Prepare Tcl's docs for life as 8.6 (remove out of date change bars, fixdkf2008-06-291-8/+6
|/ / | | | | | | typedefs, add a few missing bits)
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | GOOBE the docs some more.dkf2007-10-291-3/+3
| |
* | First stage of doing GOOBE improvements to documentation now that the html ↵dkf2007-10-281-4/+7
| | | | | | | | generation works
* | * changes: Updated for 8.5b2 release.core_8_5_b2dgp2007-10-261-7/+5
| | | | | | | | | | | | * doc/*.1: Revert doc changes that broke * doc/*.3: `make html` so we can get the release * doc/*.n: out the door.
* | Lots of improvements to look and feel of manual pagesdkf2007-10-241-5/+7
| |
* | Update the .AS macro definition and take advantage of it's new-found power.dkf2004-10-071-2/+2
| |
* | one more bit of TIP 137 documentation...dgp2003-09-051-6/+7
|/
* Spell-check, fixed typos (Updates from Larry Virden).jenglish2002-07-011-2/+2
|
* * Documented $tcl_rcFileName and added moredgp2002-06-051-9/+29
| | | | clarifications about the intended use of Tcl_Main(). [Bug 505651]
* typo correctiondgp2002-01-141-2/+2
|
* * 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().
* * Several typo and formatting corrections discovereddgp2001-12-101-2/+2
| | | | during conversion to TMML. Thanks to Joe English. [Patch 490514]
* * doc/tclsh.1:andreas_kupries2001-09-101-1/+10
| | | | | | | | | | | | * doc/Tcl_Main.3: * doc/CrtChannel.3: * doc/OpenFileChnl.3: * doc/GetStdChan.3: Enhanced the manpages with cross-references to the new manpage and more explanations how these functions deal with the standard channels in various situations. * doc/StdChannels.3: New manpage describing handling of the standard channels by the Tcl library [402725].
* doc/Tcl_Main.3: added docs for Tcl_SetMainLoophobbs2000-11-031-6/+26
|
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-03-261-0/+61