diff options
author | davygrvy <davygrvy@pobox.com> | 2003-12-24 04:18:18 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2003-12-24 04:18:18 (GMT) |
commit | 5d224fb11538aa654ba2028f75e5ffa06df2c579 (patch) | |
tree | eff546c6e792fecd4310f81379419c1d68d63c28 /mac/tclMacThrd.c | |
parent | bdb55bff6176c625c664d4ea5a4ec5187839d7a8 (diff) | |
download | tcl-5d224fb11538aa654ba2028f75e5ffa06df2c579.zip tcl-5d224fb11538aa654ba2028f75e5ffa06df2c579.tar.gz tcl-5d224fb11538aa654ba2028f75e5ffa06df2c579.tar.bz2 |
All uses of 'panic' (the macro) changed
to 'Tcl_Panic' (the function). The #define
of panic in tcl.h clearly states it is
deprecated in the comments.
[Patch 865264]
Diffstat (limited to 'mac/tclMacThrd.c')
-rw-r--r-- | mac/tclMacThrd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/tclMacThrd.c b/mac/tclMacThrd.c index dec4842..4d98d9c 100644 --- a/mac/tclMacThrd.c +++ b/mac/tclMacThrd.c @@ -710,7 +710,7 @@ GetThreadDataStruct(keyVal) if ((int) keyVal <= 0) { return NULL; } else if ((int) keyVal > keyCounter) { - panic("illegal data key value"); + Tcl_Panic("illegal data key value"); } GetCurrentThread(&curThread); @@ -755,7 +755,7 @@ RemoveThreadDataStruct(keyVal) if ((int) keyVal <= 0) { return NULL; } else if ((int) keyVal > keyCounter) { - panic("illegal data key value"); + Tcl_Panic("illegal data key value"); } GetCurrentThread(&curThread); |