diff options
| author | davygrvy@pobox.com <davygrvy> | 2003-12-24 04:18:18 (GMT) |
|---|---|---|
| committer | davygrvy@pobox.com <davygrvy> | 2003-12-24 04:18:18 (GMT) |
| commit | 09f3f1e13de3f29f152261bc48e1175f8897dedf (patch) | |
| tree | eff546c6e792fecd4310f81379419c1d68d63c28 /generic/tclPathObj.c | |
| parent | 2bb7451feb141f047c02c5a2a184101da43c3e3a (diff) | |
| download | tcl-09f3f1e13de3f29f152261bc48e1175f8897dedf.zip tcl-09f3f1e13de3f29f152261bc48e1175f8897dedf.tar.gz tcl-09f3f1e13de3f29f152261bc48e1175f8897dedf.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 'generic/tclPathObj.c')
| -rw-r--r-- | generic/tclPathObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index ae089bc..30bffcc 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.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: tclPathObj.c,v 1.18 2003/12/17 09:55:11 vincentdarley Exp $ + * RCS: @(#) $Id: tclPathObj.c,v 1.19 2003/12/24 04:18:20 davygrvy Exp $ */ #include "tclInt.h" @@ -2013,7 +2013,7 @@ UpdateStringOfFsPath(objPtr) Tcl_Obj *copy; if (PATHFLAGS(objPtr) == 0 || fsPathPtr->cwdPtr == NULL) { - panic("Called UpdateStringOfFsPath with invalid object"); + Tcl_Panic("Called UpdateStringOfFsPath with invalid object"); } copy = Tcl_DuplicateObj(fsPathPtr->cwdPtr); |
