Commit e7590e95 by Gabriel Dos Reis

Fix missed replacements.

From-SVN: r98063
parent 4cf88ac3
...@@ -6174,7 +6174,7 @@ byte_re_match_2_internal (struct re_pattern_buffer *bufp, ...@@ -6174,7 +6174,7 @@ byte_re_match_2_internal (struct re_pattern_buffer *bufp,
#endif /* WCHAR */ #endif /* WCHAR */
boolean negate = (re_opcode_t) *(p - 1) == charset_not; boolean negate = (re_opcode_t) *(p - 1) == charset_not;
DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : ""); DEBUG_PRINT2 ("EXECUTING charset%s.\n", negate ? "_not" : "");
PREFETCH (); PREFETCH ();
c = TRANSLATE (*d); /* The character to match. */ c = TRANSLATE (*d); /* The character to match. */
#ifdef WCHAR #ifdef WCHAR
...@@ -6544,7 +6544,7 @@ byte_re_match_2_internal (struct re_pattern_buffer *bufp, ...@@ -6544,7 +6544,7 @@ byte_re_match_2_internal (struct re_pattern_buffer *bufp,
negate = !negate; negate = !negate;
char_set_matched: char_set_matched:
if (not) goto fail; if (negate) goto fail;
#else #else
/* Cast to `unsigned' instead of `unsigned char' in case the /* Cast to `unsigned' instead of `unsigned char' in case the
bit list is a full 32 bytes long. */ bit list is a full 32 bytes long. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment