diff options
author | vincentdarley <vincentdarley> | 2002-07-02 12:16:04 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-02 12:16:04 (GMT) |
commit | 1cd35d50e23acf4f42ece59c185ec95409e2e446 (patch) | |
tree | 576c4426d4b163c9be109862d760b31c11d7bbf8 /generic/tclCmdAH.c | |
parent | 782734742ecd2e4fdda69f7cff40e27eb51887b6 (diff) | |
download | tcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.zip tcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.tar.gz tcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.tar.bz2 |
clearer error msgs for file link
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r-- | generic/tclCmdAH.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index bc6b655..2992367 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.26 2002/06/21 14:22:28 vincentdarley Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.27 2002/07/02 12:16:05 vincentdarley Exp $ */ #include "tclInt.h" @@ -961,7 +961,7 @@ Tcl_FileObjCmd(dummy, interp, objc, objv) if (objc < 3 || objc > 5) { Tcl_WrongNumArgs(interp, 2, objv, - "?-linktype? source ?target?"); + "?-linktype? linkname ?target?"); return TCL_ERROR; } |