not = (re_opcode_t)p[-1] == notsyntaxspec;
k = *p++;
for (j = 0; j < (1 << BYTEWIDTH); j++)
- if ((SYNTAX (j) == (enum syntaxcode) k) ^ not)
+ if ((SYNTAX (j) == (re_opcode_t) k) ^ not)
fastmap[j] = 1;
break;
#else /* emacs */
looks like multibyte form. */
c = *d, len = 1;
- if ((SYNTAX (c) != (enum syntaxcode) mcnt) ^ not)
+ if ((SYNTAX (c) != (re_opcode_t) mcnt) ^ not)
goto fail;
d += len;
}