diff options
| author | Joakim Verona | 2011-09-05 10:37:16 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-09-05 10:37:16 +0200 |
| commit | 687faaf59cdf4029b5e8da16965b257592059e37 (patch) | |
| tree | c19fc758dc421ec1e6619de88d7cd70258927b47 /src/term.c | |
| parent | d47f8c5baeaa804548a73675077c8e37cdfe5142 (diff) | |
| parent | f62bd846552a090f3ba5e136d6d9cdb4c07ed7be (diff) | |
| download | emacs-687faaf59cdf4029b5e8da16965b257592059e37.tar.gz emacs-687faaf59cdf4029b5e8da16965b257592059e37.zip | |
upstream
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 |