1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-02 02:10:46 -08:00

(IT_write_glyphs): Convert cbp to unsigned char *.

This commit is contained in:
Eli Zaretskii 2000-08-16 05:22:00 +00:00
parent 04231ab822
commit 5e30eaa296
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
* msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
2000-08-16 Kenichi Handa <handa@etl.go.jp>
The following changes are mainly to fix bugs of

View file

@ -1056,7 +1056,7 @@ IT_write_glyphs (struct glyph *str, int str_len)
terminal_coding with Vdos_unsupported_char_glyph. */
if (*conversion_buffer == '?')
{
char *cbp = conversion_buffer;
unsigned char *cbp = conversion_buffer;
while (cbp < conversion_buffer + enclen && *cbp == '?')
*cbp++ = unsupported_char;