summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordas <das>2005-12-14 02:09:19 (GMT)
committerdas <das>2005-12-14 02:09:19 (GMT)
commit36eacb401e8d517c750fb1236e6cc6214c6d12e3 (patch)
treef9be3b50674ca59a96219aeb85b4207436e0ea76 /generic/tclBasic.c
parent47ed8302270238b3263e8c7e6fb103e6c12e4d9c (diff)
downloadtcl-36eacb401e8d517c750fb1236e6cc6214c6d12e3.zip
tcl-36eacb401e8d517c750fb1236e6cc6214c6d12e3.tar.gz
tcl-36eacb401e8d517c750fb1236e6cc6214c6d12e3.tar.bz2
* macosx/Tcl.xcode/project.pbxproj:
* macosx/Tcl.xcodeproj/project.pbxproj: * unix/Makefile.in: add new tclTomMath* files. * generic/tclBasic.c: replace panic with Tcl_Panic.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 589892d..c219502 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.184 2005/12/13 22:43:17 kennykb Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.185 2005/12/14 02:09:19 das Exp $
*/
#include "tclInt.h"
@@ -583,7 +583,7 @@ Tcl_CreateInterp(void)
Tcl_InitStubs(interp, TCL_VERSION, 1);
if (TclTommath_Init(interp) != TCL_OK) {
- panic(Tcl_GetString(Tcl_GetObjResult(interp)));
+ Tcl_Panic(Tcl_GetString(Tcl_GetObjResult(interp)));
}
return interp;