diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-17 17:17:23 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-17 17:17:23 +0000 |
commit | 97dc7d3e75fba5b997341633941459733ca2a7a1 (patch) | |
tree | 0d381ba9c5d61f69c997aac93a86e7fa39835efc /regexec.c | |
parent | 24df86f67f7cf96bcbc3b5d928e7421c1d7d5454 (diff) | |
download | perl-97dc7d3e75fba5b997341633941459733ca2a7a1.tar.gz |
Comment out a now unused variable
p4raw-id: //depot/perl@32630
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1227,7 +1227,8 @@ S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s, U8 *sm = (U8 *) m; U8 tmpbuf1[UTF8_MAXBYTES_CASE+1]; U8 tmpbuf2[UTF8_MAXBYTES_CASE+1]; - const U32 uniflags = UTF8_ALLOW_DEFAULT; + /* used by commented-out code below */ + /*const U32 uniflags = UTF8_ALLOW_DEFAULT;*/ /* XXX: Since the node will be case folded at compile time this logic is a little odd, although im not |