]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid assertion violations when rendering some fonts
authorEli Zaretskii <eliz@gnu.org>
Wed, 29 Jun 2016 16:14:58 +0000 (19:14 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 29 Jun 2016 16:14:58 +0000 (19:14 +0300)
* src/dispextern.h (FONT_TOO_HIGH): Don't consider a font "too
high" if its pixel_size value is zero.  This avoids assertion
violations at the end of x_produce_glyphs.

src/dispextern.h

index 70358724024c642a8b4bc6e896c851615f058ec7..7b9ae78dcd3b7de9f8aae985b280bed8695946f2 100644 (file)
@@ -1541,7 +1541,8 @@ struct glyph_string
    large vertical space.  The heuristics is in the factor of 3.  We
    ignore the ascent and descent values reported by such fonts, and
    instead go by the values reported for individual glyphs.  */
-#define FONT_TOO_HIGH(ft)  ((ft)->ascent + (ft)->descent > 3*(ft)->pixel_size)
+#define FONT_TOO_HIGH(ft)                                              \
+  ((ft)->pixel_size > 0 && (ft)->ascent + (ft)->descent > 3*(ft)->pixel_size)
 
 \f
 /***********************************************************************