diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-12-27 14:37:50 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-01-16 19:13:24 -0700 |
commit | c269f40313641284eb670ea37200c7fcb6caec05 (patch) | |
tree | d887b2d618c2351774ead146c9e34d2703aef656 /regexec.c | |
parent | f7eb74527c8a18f76b790a821665f8a3de269886 (diff) | |
download | perl-c269f40313641284eb670ea37200c7fcb6caec05.tar.gz |
regexec.c: change variable name to reflect its purpose
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -127,7 +127,7 @@ /* Doesn't do an assert to verify that is correct */ #define LOAD_UTF8_CHARCLASS_NO_CHECK(class) STMT_START { \ - if (!CAT2(PL_utf8_,class)) { bool ok; ENTER; save_re_context(); ok=CAT2(is_utf8_,class)((const U8*)" "); LEAVE; } } STMT_END + if (!CAT2(PL_utf8_,class)) { bool throw_away; ENTER; save_re_context(); throw_away = CAT2(is_utf8_,class)((const U8*)" "); LEAVE; } } STMT_END #define LOAD_UTF8_CHARCLASS_ALNUM() LOAD_UTF8_CHARCLASS(alnum,"a") #define LOAD_UTF8_CHARCLASS_DIGIT() LOAD_UTF8_CHARCLASS(digit,"0") |