diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 06:10:56 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 06:10:56 (GMT) |
commit | 2e1d6b21db75a43a44e02272dce97955e9aecde1 (patch) | |
tree | 103cdcd515ae38406063be74a3bb942be25c9ebd /generic/tclPathObj.c | |
parent | 19d1741894fc2c56ad61073c9004a90afabf2e56 (diff) | |
download | tcl-2e1d6b21db75a43a44e02272dce97955e9aecde1.zip tcl-2e1d6b21db75a43a44e02272dce97955e9aecde1.tar.gz tcl-2e1d6b21db75a43a44e02272dce97955e9aecde1.tar.bz2 |
Replaced commas in varargs with string concatenation where possible [Patch 1515234]
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r-- | generic/tclPathObj.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index 174ac22..8744da8 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPathObj.c,v 1.61 2007/04/20 02:23:31 kennykb Exp $ + * RCS: @(#) $Id: tclPathObj.c,v 1.62 2007/04/20 06:10:58 kennykb Exp $ */ #include "tclInt.h" @@ -1327,7 +1327,7 @@ TclFSMakePathRelative( if (pathPtr->typePtr->updateStringProc == NULL) { if (interp != NULL) { Tcl_ResetResult(interp); - Tcl_AppendResult(interp, "can't find object", + Tcl_AppendResult(interp, "can't find object" "string representation", (char *) NULL); } return NULL; @@ -1449,7 +1449,7 @@ TclFSMakePathFromNormalized( if (pathPtr->typePtr->updateStringProc == NULL) { if (interp != NULL) { Tcl_ResetResult(interp); - Tcl_AppendResult(interp, "can't find object", + Tcl_AppendResult(interp, "can't find object" "string representation", (char *) NULL); } return TCL_ERROR; @@ -2318,7 +2318,7 @@ SetFsPathFromAny( if (dir == NULL) { if (interp) { Tcl_ResetResult(interp); - Tcl_AppendResult(interp, "couldn't find HOME environment ", + Tcl_AppendResult(interp, "couldn't find HOME environment " "variable to expand path", (char *) NULL); } return TCL_ERROR; |