diff options
| author | Paul Eggert | 2011-09-04 16:58:01 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-04 16:58:01 -0700 |
| commit | 1c262cae409ec55a234c89b3b74a13a77c7f595a (patch) | |
| tree | 2780610d6227a3b1f64aa9398f21501ce3de774e /src/term.c | |
| parent | 7f59d9c856de33b97bc3f2708dcc8dadf24ee040 (diff) | |
| parent | 052bd38a56ad14a7f311677051e778de6c4bdc1c (diff) | |
| download | emacs-1c262cae409ec55a234c89b3b74a13a77c7f595a.tar.gz emacs-1c262cae409ec55a234c89b3b74a13a77c7f595a.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 |