emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 49f7c5a: Fix cursor display (bug#23993)


From: Alan Third
Subject: [Emacs-diffs] master 49f7c5a: Fix cursor display (bug#23993)
Date: Sat, 16 Jul 2016 08:27:25 +0000 (UTC)

branch: master
commit 49f7c5ad68cb9c542cfddee7bed17d207f1fc394
Author: Alan Third <address@hidden>
Commit: Alan Third <address@hidden>

    Fix cursor display (bug#23993)
    
    * src/xdisp.c (get_phys_cursor_geometry): Fix invalid C operator.
---
 src/xdisp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xdisp.c b/src/xdisp.c
index 14d6f8f..efd5f54 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -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;
     }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]