# HG changeset patch # User Gerd Moellmann # Date 977431258 0 # Node ID 0755285501120343dd4ab36298c0d70c7cbb4538 # Parent c04a8de55245cdee46d19ac3ef3d55eeba1d9e93 (GLYPH_EQUAL_P): Also compare pixel widths, otherwise tabs of different size compare equal. diff -r c04a8de55245 -r 075528550112 src/dispextern.h --- a/src/dispextern.h Thu Dec 21 20:40:40 2000 +0000 +++ b/src/dispextern.h Thu Dec 21 20:40:58 2000 +0000 @@ -339,7 +339,8 @@ && (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? */