mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
thread problems
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
133ff3421a
commit
35e731649d
7 changed files with 62 additions and 23 deletions
5
parse.y
5
parse.y
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue