thread problems

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-05-17 06:33:50 +00:00
parent 133ff3421a
commit 35e731649d
7 changed files with 62 additions and 23 deletions

View file

@ -2256,8 +2256,9 @@ parse_regx(term, paren)
case 'x':
options |= RE_OPTION_EXTENDED;
break;
case 'p':
options |= RE_OPTION_POSIXLINE;
case 'p': /* /p is obsolete, works as /m */
case 'm':
options |= RE_OPTION_MULTILINE;
break;
case 'o':
once = 1;