summaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-22 07:09:55 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-22 07:09:55 +0000
commite4e5edd5c30ea8b3b0f85e1469e0379e2b67e21e (patch)
treed82f2d1d4bd96994d90e755999051820139338ee /regex.h
parent440834408c97cdc6b1533b6fa9f82bb5a147272f (diff)
/p is back for transit
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@706 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 a1e3093a04..80369d4442 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 $ ignore newline */
+#define RE_OPTION_POSIXLINE (RE_OPTION_EXTENDED<<1)
/* newline will be included for . */
-#define RE_OPTION_MULTILINE (RE_OPTION_EXTENDED<<1)
+#define RE_OPTION_MULTILINE (RE_OPTION_POSIXLINE<<1)
/* search for longest match, in accord with POSIX regexp */
#define RE_OPTION_LONGEST (RE_OPTION_MULTILINE<<1)
4&id=c9447082ecbcab5dab9dcbcaa93686648008d8f8'>Revert r57690 except for read_nonblocknobu 2017-02-23[DOC] mark up literalsnobu 2017-02-23[DOC] keyword argument _exception_nobu 2017-02-23[DOC] {read,write}_nonblock with exception: falsenobu 2017-01-06prelude.rb: Binding#irb [ci skip]nobu 2016-12-07fix typo in `IO#write_nonblock` example [ci skip]kazu 2016-08-30Use qualified namesnobu 2015-12-07add missing options to call-seq of IO#read_nonblockkazu 2015-11-13prelude.rb: deprecate Thread.exclusivenobu 2015-11-12io.c: avoid kwarg parsing in C APInormal 2014-04-17* prelude.rb: [DOC] Update Thread::exclusive docs by @stevenharman.hsbt 2012-11-19* prelude.rb: Moved Mutex#synchronize tokosaki 2011-05-15* remove trailing spaces.nobu 2010-04-10Fix :nodoc: definition. [ruby-dev:40949]naruse 2010-03-29* prelude.rb, .document: Stuff in prelude.rb should be documentedknu 2010-03-16* compile.c, iseq.c, ruby.c, vm.c, vm_core.h, vm_eval.c: add absolutemame 2010-01-12* prelude.rb (require_relative): use File.realpath. [ruby-dev:40040]akr 2009-10-16* prelude.rb (require_relative): defined as a module function ofakr