+2003-02-01 Jean-Claude Wippler <jcw@equi4.com>
+
+ * library/vfslib.tcl: fixed bug in new vfs::zstream code,
+ preventing forward seeking from working properly
+
2003-02-08 Vince Darley <vincentdarley@sourceforge.net>
* library/*.tcl: made all 'matchindirectory' implementations
while {$pos < $a1} {
set n [expr {$a1 - $pos}]
if {$n > 4096} { set n 4096 }
- read $fd $n
+ # 2003-02-09: read did not work (?), spell it out instead
+ #read $fd $n
+ zstream_handler $zcmd $ifd $clen $ilen $imode read $fd $n
}
return $pos
}