summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdAH.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-07-21 22:22:27 (GMT)
committernijtmans <nijtmans>2008-07-21 22:22:27 (GMT)
commit57bdff7e68cb1e0fe66a2671b18ce67ecbb79e69 (patch)
tree939859d1daf31c3aa07ae3bd9ef742426f0aa190 /generic/tclCmdAH.c
parentee89317ed438f41a8fa968d3a117332e96b7f155 (diff)
downloadtcl-57bdff7e68cb1e0fe66a2671b18ce67ecbb79e69.zip
tcl-57bdff7e68cb1e0fe66a2671b18ce67ecbb79e69.tar.gz
tcl-57bdff7e68cb1e0fe66a2671b18ce67ecbb79e69.tar.bz2
fix [2021443] inconsistant "wrong # args" messages (follow-up)
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r--generic/tclCmdAH.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c
index 048f80f..303ecd5 100644
--- a/generic/tclCmdAH.c
+++ b/generic/tclCmdAH.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: tclCmdAH.c,v 1.97 2008/07/19 22:50:43 nijtmans Exp $
+ * RCS: @(#) $Id: tclCmdAH.c,v 1.98 2008/07/21 22:22:27 nijtmans Exp $
*/
#include "tclInt.h"
@@ -101,7 +101,7 @@ Tcl_CaseObjCmd(
if (objc < 3) {
Tcl_WrongNumArgs(interp, 1, objv,
- "string ?in? patList body ... ?default body?");
+ "string ?in? ?pattern body ...? ?default body?");
return TCL_ERROR;
}