1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 20:50:52 -08:00

(GLYPH_EQUAL_P): Also compare pixel widths,

otherwise tabs of different size compare equal.
This commit is contained in:
Gerd Moellmann 2000-12-21 20:40:58 +00:00
parent 4f8959185a
commit 726950c4dc

View file

@ -339,7 +339,8 @@ struct glyph
&& (X)->padding_p == (Y)->padding_p \
&& (X)->left_box_line_p == (Y)->left_box_line_p \
&& (X)->right_box_line_p == (Y)->right_box_line_p \
&& (X)->voffset == (Y)->voffset)
&& (X)->voffset == (Y)->voffset \
&& (X)->pixel_width == (Y)->pixel_width)
/* Are character codes, faces, padding_ps of glyphs *X and *Y equal? */