summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-05-05 16:48:53 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-05-05 16:48:53 (GMT)
commit5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa (patch)
tree2f36c7e5de9f593eccf016c132571ba2e78c41b8 /generic
parentded0ebcd4576288ef13365598a179dfee8fce1ca (diff)
downloadtcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.zip
tcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.tar.gz
tcl-5940eaeb9273d7c2c5eaa2e9db99cf403eb3a8fa.tar.bz2
Corrected error message for grammar and spelling.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclBasic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 021b937..bd8efdc 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.79 2003/04/25 21:23:18 dgp Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.80 2003/05/05 16:48:54 dkf Exp $
*/
#include "tclInt.h"
@@ -1167,8 +1167,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;
}