summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorrjohnson <rjohnson>1998-12-23 02:01:42 (GMT)
committerrjohnson <rjohnson>1998-12-23 02:01:42 (GMT)
commitc610c243ea4d245035d9e56b4f74a7a800204870 (patch)
tree0438b9db81e71f0f911a7fb848e9bd0a04b485c1 /generic
parent016bee55b53d9e9b5e228f14f390b01a58757522 (diff)
downloadtcl-c610c243ea4d245035d9e56b4f74a7a800204870.zip
tcl-c610c243ea4d245035d9e56b4f74a7a800204870.tar.gz
tcl-c610c243ea4d245035d9e56b4f74a7a800204870.tar.bz2
Made error message for cd cmd consistant with 8.1.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclCmdAH.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c
index a0aeaeb..fd31e52 100644
--- a/generic/tclCmdAH.c
+++ b/generic/tclCmdAH.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: tclCmdAH.c,v 1.3 1998/09/14 18:39:57 stanton Exp $
+ * RCS: @(#) $Id: tclCmdAH.c,v 1.4 1998/12/23 02:01:42 rjohnson Exp $
*/
#include "tclInt.h"
@@ -306,7 +306,7 @@ Tcl_CdObjCmd(dummy, interp, objc, objv)
int result;
if (objc > 2) {
- Tcl_WrongNumArgs(interp, 1, objv, "dirName");
+ Tcl_WrongNumArgs(interp, 1, objv, "?dirName?");
return TCL_ERROR;
}