mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-30 10:11:47 -07:00
(line_draw_cost): Fix invalid glyph check.
This commit is contained in:
parent
3f4e9c35d0
commit
565b39a856
1 changed files with 1 additions and 1 deletions
|
|
@ -1472,7 +1472,7 @@ line_draw_cost (matrix, vpos)
|
|||
|
||||
SET_GLYPH_FROM_CHAR_GLYPH (g, *beg);
|
||||
|
||||
if (GLYPH_INVALID_P (g) < 0
|
||||
if (GLYPH_INVALID_P (g)
|
||||
|| GLYPH_SIMPLE_P (glyph_table_base, glyph_table_len, g))
|
||||
len += 1;
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue