diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-15 20:23:54 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-15 20:23:54 (GMT) |
| commit | 79a5acfe5d8c1c0092f0167c88f6dfde28d9cf33 (patch) | |
| tree | ee872a83d3c887e120a260f12250968fde5101bf /generic/tclBasic.c | |
| parent | 3fe41b46fdb86cf1a9c43e68df8d80c826727d75 (diff) | |
| download | tcl-79a5acfe5d8c1c0092f0167c88f6dfde28d9cf33.zip tcl-79a5acfe5d8c1c0092f0167c88f6dfde28d9cf33.tar.gz tcl-79a5acfe5d8c1c0092f0167c88f6dfde28d9cf33.tar.bz2 | |
Improve bunch of error-messages
Diffstat (limited to 'generic/tclBasic.c')
| -rw-r--r-- | generic/tclBasic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 9c35889..e6dde32 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -1255,7 +1255,7 @@ Tcl_CreateInterp(void) nsPtr = Tcl_CreateNamespace(interp, "::tcl::mathop", NULL, NULL); if (nsPtr == NULL) { - Tcl_Panic("can't create math operator namespace"); + Tcl_Panic("cannot create math operator namespace"); } Tcl_Export(interp, nsPtr, "*", 1); #define MATH_OP_PREFIX_LEN 15 /* == strlen("::tcl::mathop::") */ |
