mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 00:31:01 -08:00
(display_string): Fix for the case of zero width glyph.
This commit is contained in:
parent
6ca54a3a6f
commit
587cb9a7fc
1 changed files with 1 additions and 1 deletions
|
|
@ -14611,7 +14611,7 @@ display_string (string, lisp_string, face_string, face_string_pos,
|
|||
}
|
||||
break;
|
||||
}
|
||||
else if (x + glyph->pixel_width > it->first_visible_x)
|
||||
else if (x + glyph->pixel_width >= it->first_visible_x)
|
||||
{
|
||||
/* Glyph is at least partially visible. */
|
||||
++it->hpos;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue