diff options
| author | Paul Eggert | 2011-09-05 13:43:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-05 13:43:14 -0700 |
| commit | 1dc4aa6d975c9f92cd5c0d0baf5eae89e013fd67 (patch) | |
| tree | 8c3e07779650c446922a93839c3ecdabb85cdaea /src/term.c | |
| parent | f4af5137d41b5ff71771028385f89be889dd1315 (diff) | |
| parent | 697210c4822d4e7be9a81234d2026e5ace724a90 (diff) | |
| download | emacs-1dc4aa6d975c9f92cd5c0d0baf5eae89e013fd67.tar.gz emacs-1dc4aa6d975c9f92cd5c0d0baf5eae89e013fd67.zip | |
Merge from trunk.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index 837ab399152..10416090b80 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1817,7 +1817,7 @@ produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym) | |||
| 1817 | { | 1817 | { |
| 1818 | int face_id; | 1818 | int face_id; |
| 1819 | int len; | 1819 | int len; |
| 1820 | char buf[9]; | 1820 | char buf[sizeof "\\x" + max (6, (sizeof it->c * CHAR_BIT + 3) / 4)]; |
| 1821 | char const *str = " "; | 1821 | char const *str = " "; |
| 1822 | 1822 | ||
| 1823 | /* Get a face ID for the glyph by utilizing a cache (the same way as | 1823 | /* Get a face ID for the glyph by utilizing a cache (the same way as |