summaryrefslogtreecommitdiffstats
path: root/regex.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-17 06:33:50 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-17 06:33:50 +0000
commitfe5470bd65f9fb9888fd508b0265681691059054 (patch)
tree08681d28d0e918cc08444eefd241ed639fdb8bd4 /regex.h
parentc89af9fc53fe324a9c8247a423e6c35f471e1c9d (diff)
downloadruby-fe5470bd65f9fb9888fd508b0265681691059054.tar.gz
ruby-fe5470bd65f9fb9888fd508b0265681691059054.tar.xz
ruby-fe5470bd65f9fb9888fd508b0265681691059054.zip
thread problems
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/regex.h b/regex.h
index 2386d2daa..48696e0ee 100644
--- a/regex.h
+++ b/regex.h
@@ -69,8 +69,10 @@
#define RE_OPTION_IGNORECASE (1L)
/* perl-style extended pattern available */
#define RE_OPTION_EXTENDED (RE_OPTION_IGNORECASE<<1)
-/* newline will be included for . and invert charclass matches */
+/* newline will be included for ., ^, $ does not handle newline - obsolete */
#define RE_OPTION_POSIXLINE (RE_OPTION_EXTENDED<<1)
+/* newline will be included for . */
+#define RE_OPTION_MULTILINE (RE_OPTION_POSIXLINE<<1)
/* search for longest match, in accord with POSIX regexp */
#define RE_OPTION_LONGEST (RE_OPTION_POSIXLINE<<1)