summaryrefslogtreecommitdiffstats
path: root/generic/tclClock.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-04-15 21:06:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-04-15 21:06:36 (GMT)
commite9c2be75488623a37e950be08766ed339938da0c (patch)
treef9c3f42368aaa57c23816fde2380b57e98431800 /generic/tclClock.c
parent9c4ceb163fd879f11fc0c03f0b20f8b86539f76c (diff)
downloadtcl-e9c2be75488623a37e950be08766ed339938da0c.zip
tcl-e9c2be75488623a37e950be08766ed339938da0c.tar.gz
tcl-e9c2be75488623a37e950be08766ed339938da0c.tar.bz2
Fix minor fault in [clock clicks] error message.
Diffstat (limited to 'generic/tclClock.c')
-rw-r--r--generic/tclClock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c
index 2105d21..6d23006 100644
--- a/generic/tclClock.c
+++ b/generic/tclClock.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclClock.c,v 1.26 2004/04/06 22:25:48 dgp Exp $
+ * RCS: @(#) $Id: tclClock.c,v 1.27 2004/04/15 21:06:39 dkf Exp $
*/
#include "tclInt.h"
@@ -101,7 +101,7 @@ Tcl_ClockObjCmd (client, interp, objc, objv)
return TCL_ERROR;
}
} else if (objc != 2) {
- Tcl_WrongNumArgs(interp, 2, objv, "?-milliseconds?");
+ Tcl_WrongNumArgs(interp, 2, objv, "?option?");
return TCL_ERROR;
}
switch (clickType) {