diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-26 19:38:29 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-27 19:21:31 -0700 |
commit | 78a0d3cc3d649167a7a58cbe7d5f494d42d154bd (patch) | |
tree | c10ea0254cad872135086e998a2a70d07b14fe9d /pp.c | |
parent | 18af16d0e66326ce358cf094d4b27aa663e7a10d (diff) | |
download | perl-78a0d3cc3d649167a7a58cbe7d5f494d42d154bd.tar.gz |
Move some #defines
These were defined in a .c, but now there is need for them in another .c,
so move them to a header.
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -3842,12 +3842,6 @@ PP(pp_crypt) /* Generally UTF-8 and UTF-EBCDIC are indistinguishable at this level. So * most comments below say UTF-8, when in fact they mean UTF-EBCDIC as well */ -/* Both the characters below can be stored in two UTF-8 bytes. In UTF-8 the max - * character that 2 bytes can hold is U+07FF, and in UTF-EBCDIC it is U+03FF. - * See http://www.unicode.org/unicode/reports/tr16 */ -#define LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS 0x0178 /* Also is title case */ -#define GREEK_CAPITAL_LETTER_MU 0x039C /* Upper and title case of MICRON */ - /* Below are several macros that generate code */ /* Generates code to store a unicode codepoint c that is known to occupy * exactly two UTF-8 and UTF-EBCDIC bytes; it is stored into p and p+1. */ |