diff options
| author | Eli Zaretskii | 2011-06-18 17:33:14 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-06-18 17:33:14 +0300 |
| commit | ca3122a07a44f375ef47dcec44b88b09dc981f47 (patch) | |
| tree | a726bbee4e1f98175672927ad3794a5feb7d1d3d /src/term.c | |
| parent | cc7245e4b5d277bff1cb5cf9af249955ff1f8e10 (diff) | |
| download | emacs-ca3122a07a44f375ef47dcec44b88b09dc981f47.tar.gz emacs-ca3122a07a44f375ef47dcec44b88b09dc981f47.zip | |
Fix a gratuitous crash in emacs -nw with iso-safe terminal encoding.
src/term.c (produce_glyphs): Add IT_GLYPHLESS to the values of
it->what accepted by the xassert. Fixes a gratuitous crash in an
Emacs built with -DXASSERTS.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c index c68228cc51a..ab0bc1a4277 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1546,6 +1546,7 @@ produce_glyphs (struct it *it) | |||
| 1546 | /* Nothing but characters are supported on terminal frames. */ | 1546 | /* Nothing but characters are supported on terminal frames. */ |
| 1547 | xassert (it->what == IT_CHARACTER | 1547 | xassert (it->what == IT_CHARACTER |
| 1548 | || it->what == IT_COMPOSITION | 1548 | || it->what == IT_COMPOSITION |
| 1549 | || it->what == IT_GLYPHLESS | ||
| 1549 | || it->what == IT_STRETCH); | 1550 | || it->what == IT_STRETCH); |
| 1550 | 1551 | ||
| 1551 | if (it->what == IT_STRETCH) | 1552 | if (it->what == IT_STRETCH) |