diff options
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/msdos.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ced62995245..ec8c316de6f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *. | ||
| 4 | |||
| 1 | 2000-08-16 Kenichi Handa <handa@etl.go.jp> | 5 | 2000-08-16 Kenichi Handa <handa@etl.go.jp> |
| 2 | 6 | ||
| 3 | The following changes are mainly to fix bugs of | 7 | The following changes are mainly to fix bugs of |
diff --git a/src/msdos.c b/src/msdos.c index 180e8a42683..a1113cc4d4c 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -1056,7 +1056,7 @@ IT_write_glyphs (struct glyph *str, int str_len) | |||
| 1056 | terminal_coding with Vdos_unsupported_char_glyph. */ | 1056 | terminal_coding with Vdos_unsupported_char_glyph. */ |
| 1057 | if (*conversion_buffer == '?') | 1057 | if (*conversion_buffer == '?') |
| 1058 | { | 1058 | { |
| 1059 | char *cbp = conversion_buffer; | 1059 | unsigned char *cbp = conversion_buffer; |
| 1060 | 1060 | ||
| 1061 | while (cbp < conversion_buffer + enclen && *cbp == '?') | 1061 | while (cbp < conversion_buffer + enclen && *cbp == '?') |
| 1062 | *cbp++ = unsupported_char; | 1062 | *cbp++ = unsupported_char; |