* xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 24 Mar 2012 09:29:00 +0000 (10:29 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 24 Mar 2012 09:29:00 +0000 (10:29 +0100)
characters.

src/ChangeLog
src/xdisp.c

index 11676be..182493a 100644 (file)
@@ -1,5 +1,8 @@
 2012-03-24  Andreas Schwab  <schwab@linux-m68k.org>
 
+       * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
+       characters.
+
        * xterm.c (XTread_socket): Only modify handling_signal if
        !SYNC_INPUT.  (Bug#11080)
 
index 0d23d72..97364e7 100644 (file)
@@ -24013,7 +24013,7 @@ produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
          sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
          str = buf;
        }
-      for (len = 0; str[len] && ASCII_BYTE_P (str[len]); len++)
+      for (len = 0; str[len] && ASCII_BYTE_P (str[len]) && len < 6; len++)
        code[len] = font->driver->encode_char (font, str[len]);
       upper_len = (len + 1) / 2;
       font->driver->text_extents (font, code, upper_len,