--- code/trunk/pcre_compile.c 2007/04/16 15:28:08 149 +++ code/trunk/pcre_compile.c 2007/04/17 08:22:40 150 @@ -5138,7 +5138,7 @@ cd->ctypes = tables + ctypes_offset; /* Handle different types of newline. The three bits give seven cases. The -current code allows for fixed one- or two-byte sequences, plus "any" and +current code allows for fixed one- or two-byte sequences, plus "any" and "anycrlf". */ switch (options & (PCRE_NEWLINE_CRLF | PCRE_NEWLINE_ANY)) @@ -5149,7 +5149,7 @@ case PCRE_NEWLINE_CR+ PCRE_NEWLINE_LF: newline = ('\r' << 8) | '\n'; break; case PCRE_NEWLINE_ANY: newline = -1; break; - case PCRE_NEWLINE_ANYCRLF: newline = -2; break; + case PCRE_NEWLINE_ANYCRLF: newline = -2; break; default: errorcode = ERR56; goto PCRE_EARLY_ERROR_RETURN; }