From: Eli Zaretskii Date: Sat, 18 Jun 2011 14:33:14 +0000 (+0300) Subject: Fix a gratuitous crash in emacs -nw with iso-safe terminal encoding. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~18 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca3122a07a44f375ef47dcec44b88b09dc981f47;p=emacs.git 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. --- 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)