diff options
| author | Paul Eggert | 2015-08-11 15:53:18 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-08-11 15:53:56 -0700 |
| commit | d6640d6e4c4f1a85edf924bca0f8a90d1aa6341a (patch) | |
| tree | 4590c28d3a3810f8615bd1bef52773063d8fa8ac /src/doc.c | |
| parent | 85f7e5115f9f409126d355997e8103ea5126ada2 (diff) | |
| download | emacs-d6640d6e4c4f1a85edf924bca0f8a90d1aa6341a.tar.gz emacs-d6640d6e4c4f1a85edf924bca0f8a90d1aa6341a.zip | |
Give names to Unicode code points in C code
* src/character.h (NO_BREAK_SPACE, SOFT_HYPHEN)
(ZERO_WIDTH_NON_JOINER, ZERO_WIDTH_JOINER, HYPHEN)
(NON_BREAKING_HYPHEN, LEFT_SINGLE_QUOTATION_MARK)
(RIGHT_SINGLE_QUOTATION_MARK, PARAGRAPH_SEPARATOR)
(LEFT_POINTING_ANGLE_BRACKET, RIGHT_POINTING_ANGLE_BRACKET)
(LEFT_ANGLE_BRACKET, RIGHT_ANGLE_BRACKET)
(OBJECT_REPLACEMENT_CHARACTER):
New named constants for Unicode code points.
* src/bidi.c (bidi_fetch_char, CANONICAL_EQU):
* src/composite.c (char_composable_p):
* src/lread.c (readevalloop, read1):
* src/xdisp.c (get_next_display_element):
Use them.
* src/doc.c (LEFT_SINGLE_QUOTATION_POINT):
Remove; now in character.h.
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 1 |
1 files changed, 0 insertions, 1 deletions
| @@ -689,7 +689,6 @@ the same file name is found in the `doc-directory'. */) | |||
| 689 | "\xE2\x80\x98" and "\xE2\x80\x99", respectively. */ | 689 | "\xE2\x80\x98" and "\xE2\x80\x99", respectively. */ |
| 690 | enum | 690 | enum |
| 691 | { | 691 | { |
| 692 | LEFT_SINGLE_QUOTATION_MARK = 0x2018, | ||
| 693 | uLSQM0 = 0xE2, uLSQM1 = 0x80, uLSQM2 = 0x98, | 692 | uLSQM0 = 0xE2, uLSQM1 = 0x80, uLSQM2 = 0x98, |
| 694 | uRSQM0 = 0xE2, uRSQM1 = 0x80, uRSQM2 = 0x99, | 693 | uRSQM0 = 0xE2, uRSQM1 = 0x80, uRSQM2 = 0x99, |
| 695 | }; | 694 | }; |