diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-06-16 08:27:23 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-06-16 08:27:23 +0200 |
commit | afefe6bfcf9956c77e5f9eee351e3d13be12ea3b (patch) | |
tree | d26ebf97eda297fc663597c811d91327fa208c43 /proto.h | |
parent | 91490fbe1187ee0d1ab27187fe75104690120930 (diff) | |
download | perl-afefe6bfcf9956c77e5f9eee351e3d13be12ea3b.tar.gz |
Implement new regex escape \N
\N, like in Perl 6, is equivalent to . but not influenced by /s.
It matches any character except \n. Note that followed by { and
a non-number, \N is still a named character.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5178,7 +5178,7 @@ STATIC regnode* S_regpiece(pTHX_ struct RExC_state_t *pRExC_state, I32 *flagp, U #define PERL_ARGS_ASSERT_REGPIECE \ assert(pRExC_state); assert(flagp) -STATIC regnode* S_reg_namedseq(pTHX_ struct RExC_state_t *pRExC_state, UV *valuep) +STATIC regnode* S_reg_namedseq(pTHX_ struct RExC_state_t *pRExC_state, UV *valuep, I32 *flagp) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_REG_NAMEDSEQ \ assert(pRExC_state) |