summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.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/tclPathObj.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/tclPathObj.c')
-rw-r--r--generic/tclPathObj.c8
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;