diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-20 05:51:08 (GMT) |
commit | 19d1741894fc2c56ad61073c9004a90afabf2e56 (patch) | |
tree | d1bc1e4898e7345e3f4220c96e003fd6e41b73ed /generic/tclBasic.c | |
parent | 0823d0ce0477c8a5a0183f4f9d76768b4cc203fc (diff) | |
download | tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.zip tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.tar.gz tcl-19d1741894fc2c56ad61073c9004a90afabf2e56.tar.bz2 |
Whitespace policing, replacing commas in varargs with constant string catenation, and fixed an oversight in the fix for NZA time zones.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 3d58522..33f5da7 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.243 2007/04/10 14:47:08 dkf Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.244 2007/04/20 05:51:08 kennykb Exp $ */ #include "tclInt.h" @@ -1397,7 +1397,7 @@ Tcl_HideCommand( if (strstr(hiddenCmdToken, "::") != NULL) { Tcl_AppendResult(interp, - "cannot use namespace qualifiers in hidden command", + "cannot use namespace qualifiers in hidden command" " token (rename)", NULL); return TCL_ERROR; } @@ -1420,7 +1420,7 @@ Tcl_HideCommand( */ if (cmdPtr->nsPtr != iPtr->globalNsPtr) { - Tcl_AppendResult(interp, "can only hide global namespace commands", + Tcl_AppendResult(interp, "can only hide global namespace commands" " (use rename then hide)", NULL); return TCL_ERROR; } @@ -1547,7 +1547,7 @@ Tcl_ExposeCommand( */ if (strstr(cmdName, "::") != NULL) { - Tcl_AppendResult(interp, "can not expose to a namespace ", + Tcl_AppendResult(interp, "cannot expose to a namespace " "(use expose to toplevel, then rename)", NULL); return TCL_ERROR; } |