Typo fix: CR is 0x0D not 0xDA... Ahem.

This commit is contained in:
ian%hixie.ch 2002-10-10 21:44:08 +00:00
parent 7aecaf01d1
commit 243a713ab7

View File

@ -72,7 +72,7 @@ sub include {
open(FILE, $filename);
while (<FILE>) {
# on cygwin, line endings are screwed up, so normalise them.
s/[\xDA\x0A]+$/\n/os if $^O eq 'cygwin';
s/[\x0D\x0A]+$/\n/os if $^O eq 'cygwin';
$stack->newline;
if (/^\#([a-z]+)\n?$/os) { # argumentless processing instruction
process($stack, $1);