diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
commit | 19d1741894fc2c56ad61073c9004a90afabf2e56 (patch) | |
tree | d1bc1e4898e7345e3f4220c96e003fd6e41b73ed /generic/tclCmdIL.c | |
parent | 0823d0ce0477c8a5a0183f4f9d76768b4cc203fc (diff) | |
download | tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.zip tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.tar.gz tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.tar.bz2 |
Whitespace policing, replacing commas in varargs with constant string catenation, and fixed an oversight in the fix for NZA time zones.
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r-- | generic/tclCmdIL.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 3484b49..08a96db 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.113 2007/04/10 14:47:09 dkf Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.114 2007/04/20 05:51:09 kennykb Exp $ */ #include "tclInt.h" @@ -3916,7 +3916,7 @@ Tcl_LsortObjCmd( ckfree((char *) sortInfo.indexv); } Tcl_AppendResult(interp, - "\"-command\" option must be followed ", + "\"-command\" option must be followed " "by comparison command", NULL); return TCL_ERROR; } @@ -3941,7 +3941,7 @@ Tcl_LsortObjCmd( ckfree((char *) sortInfo.indexv); } if (i == (objc-2)) { - Tcl_AppendResult(interp, "\"-index\" option must be ", + Tcl_AppendResult(interp, "\"-index\" option must be " "followed by list index", NULL); return TCL_ERROR; } |