diff options
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r-- | generic/tclStringObj.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index f4668d4..2e722c4 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -33,7 +33,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStringObj.c,v 1.61 2006/11/02 16:57:54 dgp Exp $ */ + * RCS: @(#) $Id: tclStringObj.c,v 1.62 2006/11/05 04:16:07 dgp Exp $ */ #include "tclInt.h" #include "tommath.h" @@ -2456,7 +2456,8 @@ AppendPrintfToObjVA( Tcl_ListObjGetElements(NULL, list, &objc, &objv); code = TclAppendFormatToObj(NULL, objPtr, format, objc, objv); if (code != TCL_OK) { - Tcl_Panic("Unable to format \"%s\" with supplied arguments: %s", + TclAppendPrintfToObj(objPtr, + "Unable to format \"%s\" with supplied arguments: %s", format, Tcl_GetString(list)); } Tcl_DecrRefCount(list); |