summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdIL.c
diff options
context:
space:
mode:
authordavygrvy@pobox.com <davygrvy>2003-12-24 04:18:18 (GMT)
committerdavygrvy@pobox.com <davygrvy>2003-12-24 04:18:18 (GMT)
commit09f3f1e13de3f29f152261bc48e1175f8897dedf (patch)
treeeff546c6e792fecd4310f81379419c1d68d63c28 /generic/tclCmdIL.c
parent2bb7451feb141f047c02c5a2a184101da43c3e3a (diff)
downloadtcl-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/tclCmdIL.c')
-rw-r--r--generic/tclCmdIL.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c
index cb53798..0b8de0d 100644
--- a/generic/tclCmdIL.c
+++ b/generic/tclCmdIL.c
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdIL.c,v 1.57 2003/11/03 12:48:52 vincentdarley Exp $
+ * RCS: @(#) $Id: tclCmdIL.c,v 1.58 2003/12/24 04:18:18 davygrvy Exp $
*/
#include "tclInt.h"
@@ -2693,7 +2693,7 @@ Tcl_LrepeatObjCmd(dummy, interp, objc, objv)
* We allocate using attemptckalloc() because if we ask for
* something big but can't get it, we've still got a high chance
* of having a proper failover strategy. If *that* fails to get
- * memory, panic() will happen just a few lines lower...
+ * memory, Tcl_Panic() will happen just a few lines lower...
*/
if ((unsigned)elementCount > INT_MAX/sizeof(Tcl_Obj *)/objc) {