I found that 2.04 passes all tests on Win2k with three simple changes (really one change in three places). When a filename's validity is checked by testing it against /^([\w\.\-\/]+)$/, it fails when the path begins with "C:", for example. I added a colon to the regular expression in these subs:
1. write_perl_file in Document.pm 2. _fetch_path in Provider.pm 3. _compile in Provider.pm I don't want to presume that simply adding ":" to the regex is the Right Thing to Do. So what IS the Right Thing to Do?
