Fix cursor display (bug#23993)

* src/xdisp.c (get_phys_cursor_geometry): Fix invalid C operator.
This commit is contained in:
Alan Third 2016-07-15 21:02:47 +01:00
parent 9569916d94
commit 49f7c5ad68

View file

@ -2237,7 +2237,7 @@ get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
ascent = row->ascent;
if (row->ascent < glyph->ascent)
{
y =- glyph->ascent - row->ascent;
y -= glyph->ascent - row->ascent;
ascent = glyph->ascent;
}