diff options
author | Karl Williamson <khw@cpan.org> | 2019-10-06 10:50:12 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-10-06 11:07:09 -0600 |
commit | 4bab39bc1904f776c12d31a54ff5abe06fc9c103 (patch) | |
tree | b6a1486f499a9d3e15b8884b508f4ca606ac46d0 /utfebcdic.h | |
parent | f4225fa0e24724a97c2ff1d4e608353ca1537506 (diff) | |
download | perl-4bab39bc1904f776c12d31a54ff5abe06fc9c103.tar.gz |
Make defn of UTF8_IS_START common
This can be derived from other values, removing an EBCDIC dependency
Diffstat (limited to 'utfebcdic.h')
-rw-r--r-- | utfebcdic.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/utfebcdic.h b/utfebcdic.h index ad4df4544f..8fe4bdc143 100644 --- a/utfebcdic.h +++ b/utfebcdic.h @@ -217,9 +217,6 @@ explicitly forbidden, and the shortest possible encoding should always be used * l1_char_class_tab.h. * Comments as to the meaning of each are given at their corresponding utf8.h * definitions. */ - -#define UTF8_IS_START(c) _generic_isCC(c, _CC_UTF8_IS_START) - /* Equivalent to ! UVCHR_IS_INVARIANT(c) */ #define UTF8_IS_CONTINUED(c) cBOOL(FITS_IN_8_BITS(c) \ && ! (PL_charclass[(U8) (c)] & (_CC_mask(_CC_ASCII) | _CC_mask(_CC_CNTRL)))) |