summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-06-16 08:27:23 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-06-16 08:27:23 +0200
commitafefe6bfcf9956c77e5f9eee351e3d13be12ea3b (patch)
treed26ebf97eda297fc663597c811d91327fa208c43 /proto.h
parent91490fbe1187ee0d1ab27187fe75104690120930 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 78f17ddedb..285e05f8f7 100644
--- a/proto.h
+++ b/proto.h
@@ -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)