Mercurial > emacs
changeset 34800:075528550112
(GLYPH_EQUAL_P): Also compare pixel widths,
otherwise tabs of different size compare equal.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 21 Dec 2000 20:40:58 +0000 |
parents | c04a8de55245 |
children | 803bee3aa2bd |
files | src/dispextern.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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? */