diff options
| author | Kenichi Handa | 2010-08-31 16:49:21 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-08-31 16:49:21 +0900 |
| commit | d419e1d94e885388b86f8753d741befa1855d333 (patch) | |
| tree | d907b7c8e384e459dbf027179d7710fba43837d0 /src/ChangeLog | |
| parent | b295da470123c7beea983f9b500db5286fd12996 (diff) | |
| download | emacs-d419e1d94e885388b86f8753d741befa1855d333.tar.gz emacs-d419e1d94e885388b86f8753d741befa1855d333.zip | |
Fix handling of 8-bit characters in a display table.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ec9e4a4d6cc..8a0b1b094ba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,33 @@ | |||
| 1 | 2010-08-31 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit | ||
| 4 | characters. | ||
| 5 | |||
| 6 | * term.c (encode_terminal_code): Fix the previous change. | ||
| 7 | (produce_glyphs): Don't set it->char_to_display here. Don't | ||
| 8 | handle unibyte-display-via-language-environment here. | ||
| 9 | (produce_special_glyphs): Set temp_it.char_to_display before | ||
| 10 | calling produce_glyphs. | ||
| 11 | |||
| 12 | * xdisp.c (get_next_display_element): Set it->char_to_display | ||
| 13 | here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit | ||
| 14 | characters. | ||
| 15 | (get_overlay_arrow_glyph_row): Set it.char_to_display too before | ||
| 16 | calling PRODUCE_GLYPHS. | ||
| 17 | (append_space_for_newline): Save and store it->char_to_display. | ||
| 18 | Set it->char_to_display before calling PRODUCE_GLYPHS. | ||
| 19 | (extend_face_to_end_of_line): Set it->char_to_display before | ||
| 20 | calling PRODUCE_GLYPHS. | ||
| 21 | (get_glyph_face_and_encoding): Set the glyph code an 8-bit | ||
| 22 | character to its byte value. | ||
| 23 | (get_char_glyph_code): New function. | ||
| 24 | (produce_stretch_glyph): Set it2.char_to_display too before | ||
| 25 | calling x_produce_glyphs. | ||
| 26 | (x_produce_glyphs): Simplify by using the same code for ASCII and | ||
| 27 | non-ASCII characters. Don't set it->char_to_display here. Don't | ||
| 28 | handle unibyte-display-via-language-environment here. For a | ||
| 29 | charater of no glyph, use font->space_width instead of FONT_WIDTH. | ||
| 30 | |||
| 1 | 2010-08-29 Kenichi Handa <handa@m17n.org> | 31 | 2010-08-29 Kenichi Handa <handa@m17n.org> |
| 2 | 32 | ||
| 3 | * term.c (encode_terminal_code): Encode byte chars to the | 33 | * term.c (encode_terminal_code): Encode byte chars to the |