]> git.eshelyaron.com Git - emacs.git/commitdiff
(IT_write_glyphs): Use a locally declared conversion_buffer.
authorKenichi Handa <handa@m17n.org>
Wed, 16 Aug 2000 01:38:04 +0000 (01:38 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 16 Aug 2000 01:38:04 +0000 (01:38 +0000)
src/msdos.c

index a711f84cf132e4267614d7f9382622a38e3dd3a8..180e8a42683054fb75f916c2e5fe6167f87bad20 100644 (file)
@@ -947,6 +947,9 @@ IT_write_glyphs (struct glyph *str, int str_len)
     = (NILP (current_buffer->enable_multibyte_characters)
        && unibyte_display_via_language_environment);
 
+  unsigned char conversion_buffer[256];
+  int conversion_buffer_size = sizeof conversion_buffer;
+
   if (str_len <= 0) return;
   
   screen_buf = screen_bp = alloca (str_len * 2);