diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-19 16:31:05 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-19 17:35:14 -0700 |
commit | da36747dd51a927ea304a8bfab181c8e794b1e17 (patch) | |
tree | c56c4aa32b67e4f20578b7e7c243dcd6a14c6c4b /utf8.c | |
parent | de87c4fec898d44ec7ff4bdaba989015b8ec0089 (diff) | |
download | perl-da36747dd51a927ea304a8bfab181c8e794b1e17.tar.gz |
utf8.c: Fix setting wrong variable
This doesn't appear to actually break anything.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3206,7 +3206,7 @@ Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, register UV l1, bool u1 else { *foldbuf2 = TWO_BYTE_UTF8_TO_UNI(*p2, *(p2 + 1)); } - n1 = 1; + n2 = 1; } else if (isASCII(*p2)) { if (flags && ! isASCII(*p1)) { |