summaryrefslogtreecommitdiffstats
path: root/generic/tclResolve.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-04-05 13:20:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-04-05 13:20:49 (GMT)
commitcac3e1263d7c4cb75079b29eb7d38c1c0002e4df (patch)
treecaddcbb450b2f0e00bf692a3bdd3bdfc315bfd84 /generic/tclResolve.c
parent1f8003a8dce2c5b16ca06bb46680d717b0a2e467 (diff)
downloadtcl-cac3e1263d7c4cb75079b29eb7d38c1c0002e4df.zip
tcl-cac3e1263d7c4cb75079b29eb7d38c1c0002e4df.tar.gz
tcl-cac3e1263d7c4cb75079b29eb7d38c1c0002e4df.tar.bz2
Tighten up a comment
Diffstat (limited to 'generic/tclResolve.c')
-rw-r--r--generic/tclResolve.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/generic/tclResolve.c b/generic/tclResolve.c
index c0d83bf..dde271e 100644
--- a/generic/tclResolve.c
+++ b/generic/tclResolve.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: tclResolve.c,v 1.8 2005/11/02 00:55:06 dkf Exp $
+ * RCS: @(#) $Id: tclResolve.c,v 1.9 2007/04/05 13:20:49 dkf Exp $
*/
#include "tclInt.h"
@@ -287,13 +287,12 @@ BumpCmdRefEpochs(
* int flags, Tcl_Command *rPtr);
*
* Whenever a command is executed or Tcl_FindCommand is invoked within
- * the namespace, this function is called to resolve the command name.
- * If this function is able to resolve the name, it should return the
- * status code TCL_OK, along with the corresponding Tcl_Command in the
- * rPtr argument. Otherwise, the function can return TCL_CONTINUE, and
- * the command will be treated under the usual name resolution rules.
- * Or, it can return TCL_ERROR, and the command will be considered
- * invalid.
+ * the namespace, this function is called to resolve the command name. If
+ * this function is able to resolve the name, it should return the status
+ * code TCL_OK, along with the corresponding Tcl_Command in the rPtr
+ * argument. Otherwise, the function can return TCL_CONTINUE, and the
+ * command will be treated under the usual name resolution rules. Or, it
+ * can return TCL_ERROR, and the command will be considered invalid.
*
* Variable resolution is handled by two functions. The first is called
* whenever a variable needs to be resolved at compile time: