summaryrefslogtreecommitdiffstats
path: root/generic/tclFCmd.c
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2007-04-20 05:51:07 (GMT)
committerkennykb <kennykb@noemail.net>2007-04-20 05:51:07 (GMT)
commitc22a629d769c281bd084ababea123dc858705794 (patch)
treed1bc1e4898e7345e3f4220c96e003fd6e41b73ed /generic/tclFCmd.c
parentc884c7079b217618614568073f0c3f2415e07a62 (diff)
downloadtcl-c22a629d769c281bd084ababea123dc858705794.zip
tcl-c22a629d769c281bd084ababea123dc858705794.tar.gz
tcl-c22a629d769c281bd084ababea123dc858705794.tar.bz2
Whitespace policing, replacing commas in varargs with constant string catenation, and fixed an oversight in the fix for NZA time zones.
FossilOrigin-Name: d6ee490b6b6a9de069d6463ed744906e1e89e221
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r--generic/tclFCmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c
index 8de33fa..198f9af 100644
--- a/generic/tclFCmd.c
+++ b/generic/tclFCmd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclFCmd.c,v 1.38 2007/04/10 14:47:14 dkf Exp $
+ * RCS: @(#) $Id: tclFCmd.c,v 1.39 2007/04/20 05:51:10 kennykb Exp $
*/
#include "tclInt.h"
@@ -589,7 +589,7 @@ CopyRenameOneFile(
if (errno == EINVAL) {
Tcl_AppendResult(interp, "error renaming \"",
TclGetString(source), "\" to \"", TclGetString(target),
- "\": trying to rename a volume or ",
+ "\": trying to rename a volume or "
"move a directory into itself", NULL);
goto done;
} else if (errno != EXDEV) {