diff options
author | stanton <stanton> | 1999-04-23 01:57:23 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-04-23 01:57:23 (GMT) |
commit | 900205b76935aba2f912d67cb63c5a02f15c3e9a (patch) | |
tree | f22fb52653f6c12039b7951588ea61d9944bfaef /win/tclWin32Dll.c | |
parent | a9e9c4de3de788a605af9a2d4efa389f32735e21 (diff) | |
download | tcl-900205b76935aba2f912d67cb63c5a02f15c3e9a.zip tcl-900205b76935aba2f912d67cb63c5a02f15c3e9a.tar.gz tcl-900205b76935aba2f912d67cb63c5a02f15c3e9a.tar.bz2 |
* win/tclWinFCmd.c:
* win/tclWin32Dll.c: Changed uses of "try" to "__try", since that
is the actual keyword. This eliminates the need for some -D flags
from the makefile.
Diffstat (limited to 'win/tclWin32Dll.c')
-rw-r--r-- | win/tclWin32Dll.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c index 5a90b77..349e770 100644 --- a/win/tclWin32Dll.c +++ b/win/tclWin32Dll.c @@ -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: tclWin32Dll.c,v 1.6 1999/04/16 00:48:07 stanton Exp $ + * RCS: @(#) $Id: tclWin32Dll.c,v 1.7 1999/04/23 01:57:23 stanton Exp $ */ #include "tclWinInt.h" @@ -445,10 +445,10 @@ TclpCheckStackSpace() * exception if the stack pointer is set below the bottom of the stack. */ - try { + __try { alloca(TCL_WIN_STACK_THRESHOLD); return 1; - } except (1) {} + } __except (1) {} return 0; } |