From ca3122a07a44f375ef47dcec44b88b09dc981f47 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 18 Jun 2011 17:33:14 +0300 Subject: [PATCH] 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. --- src/ChangeLog | 4 ++++ src/term.c | 1 + 2 files changed, 5 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index b560528a1d6..2ebd593d00e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2011-06-18 Eli Zaretskii + * 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. + * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector) (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors and vector-like objects. 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) /* Nothing but characters are supported on terminal frames. */ xassert (it->what == IT_CHARACTER || it->what == IT_COMPOSITION + || it->what == IT_GLYPHLESS || it->what == IT_STRETCH); if (it->what == IT_STRETCH) -- 2.39.5