]> git.eshelyaron.com Git - emacs.git/commitdiff
(display_string): Fix for the case of zero width glyph.
authorKenichi Handa <handa@m17n.org>
Fri, 27 Sep 2002 04:49:47 +0000 (04:49 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 27 Sep 2002 04:49:47 +0000 (04:49 +0000)
src/xdisp.c

index e5162702eb5f10545ce4c5b9e2b858084e9dc58d..84a407ed074ff1bb904f67373eb848825f0c38ff 100644 (file)
@@ -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;