fix bug in regexp parser where vertical bar after a single character is followed by the end-of-string

svn: r9460
This commit is contained in:
Matthew Flatt 2008-04-24 19:02:57 +00:00
parent 2548f7ecbb
commit b80d99c2f9

View File

@ -1814,6 +1814,8 @@ regranges(int parse_flags, int at_start)
break;
regparse++;
if (regparse == regparse_end)
break;
}
regparse = save_regparse;