aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Third2016-07-15 21:02:47 +0100
committerAlan Third2016-07-16 09:19:05 +0100
commit49f7c5ad68cb9c542cfddee7bed17d207f1fc394 (patch)
tree62f299c1d4b60abe50aef9d92aa7cae84dcd8a68
parent9569916d94c6c448862d02919e52fc3bfb9b9c8d (diff)
downloademacs-49f7c5ad68cb9c542cfddee7bed17d207f1fc394.tar.gz
emacs-49f7c5ad68cb9c542cfddee7bed17d207f1fc394.zip
Fix cursor display (bug#23993)
* src/xdisp.c (get_phys_cursor_geometry): Fix invalid C operator.
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 14d6f8fcf93..efd5f54fa39 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2237,7 +2237,7 @@ get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
2237 ascent = row->ascent; 2237 ascent = row->ascent;
2238 if (row->ascent < glyph->ascent) 2238 if (row->ascent < glyph->ascent)
2239 { 2239 {
2240 y =- glyph->ascent - row->ascent; 2240 y -= glyph->ascent - row->ascent;
2241 ascent = glyph->ascent; 2241 ascent = glyph->ascent;
2242 } 2242 }
2243 2243