From 35e731649da88fda916509eb1cb0a745d772f21c Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 17 May 2000 06:33:50 +0000 Subject: thread problems git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index b4a96de5c2..fe52ee5a03 100644 --- a/parse.y +++ b/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; -- cgit v1.2.3