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:
parent
4f8959185a
commit
726950c4dc
1 changed files with 2 additions and 1 deletions
|
|
@ -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? */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue