diff options
author | vincentdarley <vincentdarley> | 2004-03-09 12:59:04 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-03-09 12:59:04 (GMT) |
commit | 178507e4d068311f44babc3ae8960e2555c7841d (patch) | |
tree | b0cb4ba91f317961d72f620ce8fe4c4d002b3bee /generic/tclCmdAH.c | |
parent | 2e488121f5c9875f01b112b8050af3dedb46ec8b (diff) | |
download | tcl-178507e4d068311f44babc3ae8960e2555c7841d.zip tcl-178507e4d068311f44babc3ae8960e2555c7841d.tar.gz tcl-178507e4d068311f44babc3ae8960e2555c7841d.tar.bz2 |
fixed typos in documentation and comments
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r-- | generic/tclCmdAH.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index 287d139..b9ddd58 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.41 2004/02/04 06:45:30 dgp Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.42 2004/03/09 12:59:04 vincentdarley Exp $ */ #include "tclInt.h" @@ -1079,7 +1079,8 @@ Tcl_FileObjCmd(dummy, interp, objc, objv) * doesn't exist. */ int access; - Tcl_Obj *dirPtr = TclPathPart(interp, objv[index], TCL_PATH_DIRNAME); + Tcl_Obj *dirPtr = TclPathPart(interp, objv[index], + TCL_PATH_DIRNAME); if (dirPtr == NULL) { return TCL_ERROR; } |