summaryrefslogtreecommitdiffstats
path: root/generic/tclTestObj.c
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2007-04-20 06:10:55 (GMT)
committerkennykb <kennykb@noemail.net>2007-04-20 06:10:55 (GMT)
commita1162009514cbf06ae4518ff6561cca654eb8cc9 (patch)
tree103cdcd515ae38406063be74a3bb942be25c9ebd /generic/tclTestObj.c
parentc22a629d769c281bd084ababea123dc858705794 (diff)
downloadtcl-a1162009514cbf06ae4518ff6561cca654eb8cc9.zip
tcl-a1162009514cbf06ae4518ff6561cca654eb8cc9.tar.gz
tcl-a1162009514cbf06ae4518ff6561cca654eb8cc9.tar.bz2
Replaced commas in varargs with string concatenation where possible [Patch 1515234]
FossilOrigin-Name: d0d3c30f1a60ecb75cdca7e63593bb7d7a98f017
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r--generic/tclTestObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c
index a7d51fd..0553005 100644
--- a/generic/tclTestObj.c
+++ b/generic/tclTestObj.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: tclTestObj.c,v 1.18 2007/04/16 13:36:35 dkf Exp $
+ * RCS: @(#) $Id: tclTestObj.c,v 1.19 2007/04/20 06:10:59 kennykb Exp $
*/
#include "tclInt.h"
@@ -1025,7 +1025,7 @@ TestobjCmd(
} else {
Tcl_AppendStringsToObj(Tcl_GetObjResult(interp),
"bad option \"", Tcl_GetString(objv[1]),
- "\": must be assign, convert, duplicate, freeallvars, ",
+ "\": must be assign, convert, duplicate, freeallvars, "
"newobj, objcount, objtype, refcount, type, or types", NULL);
return TCL_ERROR;
}