summaryrefslogtreecommitdiffstats
path: root/doc/Panic.3
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate exess spacings in many doc pages.jan.nijtmans2016-03-021-2/+2
|
* 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.
* | [Patch 3124554]: Move WishPanic from Tk to Tcljan.nijtmans2011-08-141-11/+9
| | | | | | Added Documentation
* | 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.
* | | Prepare Tcl's docs for life as 8.6 (remove out of date change bars, fixdkf2008-06-291-7/+2
|/ / | | | | | | typedefs, add a few missing bits)
* | * generic/tcl.h: Explicitly standardized on the use of stdarg.hdgp2005-09-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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:
* | Convert CONST to const, VOID to void so we document how we want the API used.dkf2004-10-071-3/+3
| |
* | Convert (most) tabs to spaces because they're printed more reliablydkf2004-10-071-3/+3
| |
* | More documentation fixes from Mikhail Kolesnitchenko. [Patch 1022527]dkf2004-09-061-2/+2
| |
* | mentions of 'panic' and 'panicVA' removed from the documentation.davygrvy2004-01-221-13/+3
|/
* formatting correctionsdgp2001-08-251-3/+9
|
* corrected minor nroff transgressionshobbs2001-08-071-2/+2
|
* * generic/tcl.h:dgp2001-06-081-0/+102
* generic/tcl.decls: * generic/tclPanic.c: Added CONST to Tcl_*Panic* public interfaces. [Patch 415648, TIP 27] * generic/tclInt.decls: * mac/tclMacAppInit.c (main): * mac/tclMacBOAAppInit.c (main): * mac/tclMacPanic.c: Modified special Mac implementations of Tcl_*Panic* to be exact copies of the generic implementations. Added TclMacSetPanic. The generic implementations should be used directly, rather than copies, but that requires further changes by someone familiar with the Mac build systems. [Patch 415648] * generic/tclDecls.h: * generic/tclIntPlatDecls.h: *`generic/tclStubInit.c: `make gentubs` after above changes. * doc/Panic.3: * unix/mkLinks: New file documenting Tcl_*Panic* public interfaces, followed by `make mklinks`. [Patch 415648, Bug 219170, Bug 414936]