emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/w32term.c,v


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/w32term.c,v
Date: Sun, 25 May 2008 11:17:11 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Kenichi Handa <handa>   08/05/25 11:17:08

Index: w32term.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/w32term.c,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -b -r1.291 -r1.292
--- w32term.c   23 May 2008 06:11:53 -0000      1.291
+++ w32term.c   25 May 2008 11:17:07 -0000      1.292
@@ -2891,7 +2891,7 @@
               else
                 thickness = 1;
               if (x_underline_at_descent_line)
-                position = (s->height - thickness) - s->ybase;
+                position = (s->height - thickness) - (s->ybase - s->y);
               else
                 {
                 /* Get the underline position.  This is the recommended
@@ -2912,7 +2912,7 @@
          /* Check the sanity of thickness and position.  We should
             avoid drawing underline out of the current line area.  */
          if (s->y + s->height <= s->ybase + position)
-           position = s->y + s->height - 1;
+           position = (s->height - 1) - (s->ybase - s->y);
          if (s->y + s->height < s->ybase + position + thickness)
            thickness = (s->y + s->height) - (s->ybase + position);
          s->underline_thickness = thickness;




reply via email to

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