diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-19 04:14:07 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-19 04:14:07 +0000 |
commit | 8c3157e43fb507dfefe71949d619115644aa0927 (patch) | |
tree | a9d0b59104963f586cb03c496958166930480ec8 /regex.h | |
parent | 75ebf3910794079ca1ade31ac4a79e58f0827e03 (diff) | |
download | bundler-8c3157e43fb507dfefe71949d619115644aa0927.tar.gz |
* eval.c (rb_thread_cleanup): current thread may be THREAD_STOPPED,
for example when terminated from signal handler.
* regex.c (re_compile_pattern): remove /p support.
* regex.h: ditto.
* parse.y (parse_regx): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2385 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.h')
-rw-r--r-- | regex.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -73,8 +73,6 @@ #define RE_OPTION_MULTILINE (RE_OPTION_EXTENDED<<1) /* ^ and $ ignore newline */ #define RE_OPTION_SINGLELINE (RE_OPTION_MULTILINE<<1) -/* works line Perl's /s; it's called POSIX for wrong reason */ -#define RE_OPTION_POSIXLINE (RE_OPTION_MULTILINE|RE_OPTION_SINGLELINE) /* search for longest match, in accord with POSIX regexp */ #define RE_OPTION_LONGEST (RE_OPTION_SINGLELINE<<1) |