diff options
author | dgp <dgp@users.sourceforge.net> | 2012-06-20 19:19:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-06-20 19:19:53 (GMT) |
commit | 57d68d7c1623442deab713279fdfeb6daf13eff9 (patch) | |
tree | 74ab6e1f3ffb3c6e6de702e48dc0a992e5bcd516 /generic/tclIOUtil.c | |
parent | 9ff8e40fff5458c0dd6e606d79a127309cd985a9 (diff) | |
parent | 52d15b52d02ef41a6a25128de9bd49c2fc59b343 (diff) | |
download | tcl-57d68d7c1623442deab713279fdfeb6daf13eff9.zip tcl-57d68d7c1623442deab713279fdfeb6daf13eff9.tar.gz tcl-57d68d7c1623442deab713279fdfeb6daf13eff9.tar.bz2 |
Remove dead code that complicates fs path values but adds no value.
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 09877a3..e4b4ad6 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -1409,14 +1409,9 @@ int TclFSNormalizeToUniquePath( Tcl_Interp *interp, /* Used for error messages. */ Tcl_Obj *pathPtr, /* The path to normalize in place */ - int startAt, /* Start at this char-offset */ - ClientData *clientDataPtr) /* If we generated a complete normalized path - * for a given filesystem, we can optionally - * return an fs-specific clientdata here. */ + int startAt) /* Start at this char-offset */ { FilesystemRecord *fsRecPtr, *firstFsRecPtr; - /* Ignore this variable */ - (void) clientDataPtr; /* * Call each of the "normalise path" functions in succession. This is a |