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 | c1ba2e58398c0c71d267fc2b610ad55b450c60e5 (patch) | |
tree | 74ab6e1f3ffb3c6e6de702e48dc0a992e5bcd516 /generic/tclIOUtil.c | |
parent | d3d03e5a92f4d0c8dd8c6233e0efe8fba5b5df7a (diff) | |
parent | 993123b38cce295652eea75b797b0777d7f56193 (diff) | |
download | tcl-c1ba2e58398c0c71d267fc2b610ad55b450c60e5.zip tcl-c1ba2e58398c0c71d267fc2b610ad55b450c60e5.tar.gz tcl-c1ba2e58398c0c71d267fc2b610ad55b450c60e5.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 |