diff options
author | dgp <dgp@users.sourceforge.net> | 2001-06-17 03:48:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-06-17 03:48:18 (GMT) |
commit | a7bfb25cf558c4f2ba054227660dfe3a31523219 (patch) | |
tree | dbee9a76f5b1da8d4edc5ce3870efb502431c376 /generic/tclInt.decls | |
parent | ed0c34adaed8a98ee5dc98e08810561ef81aa41c (diff) | |
download | tcl-a7bfb25cf558c4f2ba054227660dfe3a31523219.zip tcl-a7bfb25cf558c4f2ba054227660dfe3a31523219.tar.gz tcl-a7bfb25cf558c4f2ba054227660dfe3a31523219.tar.bz2 |
* generic/tclInt.decls:
* generic/tclInt.h:
* generic/tclPanic.c (Tcl_PanicVA):
* mac/tclMacAppInit.c (main):
* mac/tclMacPanic.c (TclpPanic):
* unix/tclUnixPort.h:
* win/tclWinPort.h: Replaced TclMacSetPanic with TclpPanic
for setting a platform-specific panic handler. TclpPanic
is NULL on Unix and Windows. Fixes broken wish on Mac due
to earlier patches. [Patch 415648]
* generic/tclIntPlatDecls.h:
* generic/tclStubInit.c: `make gentubs` after above changes.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 8835119..4894d2d 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.27 2001/06/08 20:06:11 dgp Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.28 2001/06/17 03:48:19 dgp Exp $ library tcl @@ -725,9 +725,6 @@ declare 23 mac { declare 25 mac { int TclMacChmod(char *path, int mode) } -declare 26 mac { - void TclMacSetPanic(void) -} ############################ # Windows specific internals |