diff options
author | Yves Orton <demerphq@gmail.com> | 2006-11-29 17:18:34 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-11-29 15:26:00 +0000 |
commit | 99ed40ffbc554c06cacea00522b9ea0d8190ec46 (patch) | |
tree | d821253f9c01c944123b33ea1df4cf694e3ae708 /regcomp.h | |
parent | 4e87bc57f9548c4b32659bff1ec0ab2f84bc490d (diff) | |
download | perl-99ed40ffbc554c06cacea00522b9ea0d8190ec46.tar.gz |
Re: Fix \k<foo> preceded by literal
Message-ID: <9b18b3110611290718o685a07ddja39f595ed97c231a@mail.gmail.com>
p4raw-id: //depot/perl@29420
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -376,7 +376,9 @@ EXTCONST U8 PL_varies[]; #else EXTCONST U8 PL_varies[] = { BRANCH, BACK, STAR, PLUS, CURLY, CURLYX, REF, REFF, REFFL, - WHILEM, CURLYM, CURLYN, BRANCHJ, IFTHEN, SUSPEND, CLUMP, 0 + WHILEM, CURLYM, CURLYN, BRANCHJ, IFTHEN, SUSPEND, CLUMP, + NREF, NREFF, NREFFL, + 0 }; #endif @@ -751,3 +753,4 @@ re.pm, especially to the documentation. #endif /* DEBUG RELATED DEFINES */ + |