nBIT_MAX was used instead of nBIT_UMAX
from
d223e1ea9ae864c0e563187f1e76 changes
note: at first glance it seems that
nBIT_UMAX is an alias for nBIT_MASK
/* The largest code point representable by two UTF-8 bytes on any platform that
* Perl runs on. This value is constrained by EBCDIC which has 5 bits per
* continuation byte */
-#define MAX_PORTABLE_UTF8_TWO_BYTE (32 * nBIT_MAX(5))
+#define MAX_PORTABLE_UTF8_TWO_BYTE (32 * nBIT_UMAX(5))
/*