diff options
author | Karl Williamson <khw@cpan.org> | 2014-08-21 11:55:48 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-08-21 12:58:38 -0600 |
commit | d804860bb7ec007e39c7d415aea74dcd39017c2d (patch) | |
tree | ffaa619f5dab37bc7976b6b23451054ce5985f4f /unicode_constants.h | |
parent | 65cc07c91673df6e03529e62d23f29b50f6e4716 (diff) | |
download | perl-d804860bb7ec007e39c7d415aea74dcd39017c2d.tar.gz |
unicode_constants.h: Add definitions for ESC and VT
These will be used in future commits
Diffstat (limited to 'unicode_constants.h')
-rw-r--r-- | unicode_constants.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unicode_constants.h b/unicode_constants.h index 651bc2a77c..76dee35d9c 100644 --- a/unicode_constants.h +++ b/unicode_constants.h @@ -45,6 +45,8 @@ # define DEL_NATIVE 0x7F /* U+007F */ # define CR_NATIVE 0x0D /* U+000D */ # define LF_NATIVE 0x0A /* U+000A */ +# define VT_NATIVE 0x0B /* U+000B */ +# define ESC_NATIVE 0x1B /* U+001B */ # define LATIN_SMALL_LETTER_SHARP_S_NATIVE 0xDF /* U+00DF */ # define LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_NATIVE 0xE5 /* U+00E5 */ # define LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_NATIVE 0xC5 /* U+00C5 */ @@ -80,6 +82,8 @@ # define DEL_NATIVE 0x07 /* U+007F */ # define CR_NATIVE 0x0D /* U+000D */ # define LF_NATIVE 0x15 /* U+000A */ +# define VT_NATIVE 0x0B /* U+000B */ +# define ESC_NATIVE 0x27 /* U+001B */ # define LATIN_SMALL_LETTER_SHARP_S_NATIVE 0x59 /* U+00DF */ # define LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x47 /* U+00E5 */ # define LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x67 /* U+00C5 */ @@ -115,6 +119,8 @@ # define DEL_NATIVE 0x07 /* U+007F */ # define CR_NATIVE 0x0D /* U+000D */ # define LF_NATIVE 0x25 /* U+000A */ +# define VT_NATIVE 0x0B /* U+000B */ +# define ESC_NATIVE 0x27 /* U+001B */ # define LATIN_SMALL_LETTER_SHARP_S_NATIVE 0x59 /* U+00DF */ # define LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x47 /* U+00E5 */ # define LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x67 /* U+00C5 */ @@ -150,6 +156,8 @@ # define DEL_NATIVE 0x07 /* U+007F */ # define CR_NATIVE 0x0D /* U+000D */ # define LF_NATIVE 0x15 /* U+000A */ +# define VT_NATIVE 0x0B /* U+000B */ +# define ESC_NATIVE 0x27 /* U+001B */ # define LATIN_SMALL_LETTER_SHARP_S_NATIVE 0x59 /* U+00DF */ # define LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x47 /* U+00E5 */ # define LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_NATIVE 0x67 /* U+00C5 */ |