diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-05 16:52:31 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-05-05 16:52:31 (GMT) |
commit | 805d2851fd086d66ae78c4a69446463105d1cba9 (patch) | |
tree | a8253bd78207850ea03198ea95d8d0557dd8f582 /generic | |
parent | 8fb4b544191b41c53d33158bd500989d683eae03 (diff) | |
download | tcl-805d2851fd086d66ae78c4a69446463105d1cba9.zip tcl-805d2851fd086d66ae78c4a69446463105d1cba9.tar.gz tcl-805d2851fd086d66ae78c4a69446463105d1cba9.tar.bz2 |
Corrected error message for grammar and spelling.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBasic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 6605ed7..0ad0818 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.75.2.1 2003/04/25 21:21:25 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.75.2.2 2003/05/05 16:52:33 dkf Exp $ */ #include "tclInt.h" @@ -1166,8 +1166,8 @@ Tcl_HideCommand(interp, cmdName, hiddenCmdToken) if (strstr(hiddenCmdToken, "::") != NULL) { Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), - "cannot use namespace qualifiers as hidden command", - "token (rename)", (char *) NULL); + "cannot use namespace qualifiers in hidden command", + " token (rename)", (char *) NULL); return TCL_ERROR; } |