]> git.eshelyaron.com Git - emacs.git/commitdiff
(IT_write_glyphs): Convert cbp to unsigned char *.
authorEli Zaretskii <eliz@gnu.org>
Wed, 16 Aug 2000 05:22:00 +0000 (05:22 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 16 Aug 2000 05:22:00 +0000 (05:22 +0000)
src/ChangeLog
src/msdos.c

index ced62995245990f4381f0525c7ada26fd1d44712..ec8c316de6fcc9a7c786bb238397dae7b7dd97f5 100644 (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
index 180e8a42683054fb75f916c2e5fe6167f87bad20..a1113cc4d4cccaa3bcbaa5d3cce65de84b9924f5 100644 (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;