]> git.eshelyaron.com Git - emacs.git/commitdiff
(VCENTER_BASELINE_OFFSET): Bias division (see xterm.c comment below).
authorJason Rumney <jasonr@gnu.org>
Mon, 23 Oct 2000 22:14:57 +0000 (22:14 +0000)
committerJason Rumney <jasonr@gnu.org>
Mon, 23 Oct 2000 22:14:57 +0000 (22:14 +0000)
src/ChangeLog
src/w32term.c

index 8286648aca18437f939f90ee37855b06fd46b16c..40d4b1f57c4173f519e8b5a08d816629bf97ef68 100644 (file)
@@ -1,3 +1,13 @@
+2000-10-23  Jason Rumney  <jasonr@gnu.org>
+
+       * fontset.c (syms_of_fontset) [WINDOWSNT]: Special case for
+       ASCII font of default fontset on Windows.
+
+       * w32term.c (VCENTER_BASELINE_OFFSET): Bias division (see
+       xterm.c comment below).
+
+       * w32fns.c (x_to_w32_font): Initialize dpi from dpyinfo->resy.
+
 2000-10-23  Gerd Moellmann  <gerd@gnu.org>
 
        * xterm.c (x_connection_closed): Reset handling_signal.
index d6bff6e32e441d702437f35572cb655ec0e73904..23cde3c0522644af4e4878cef37649ca5636f7d4 100644 (file)
@@ -1915,7 +1915,7 @@ x_produce_stretch_glyph (it)
 
 #define VCENTER_BASELINE_OFFSET(FONT, F)                       \
  (FONT_DESCENT (FONT)                                          \
-  + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT))) / 2       \
+  + (FRAME_LINE_HEIGHT ((F)) + 1 - FONT_HEIGHT ((FONT))) / 2   \
   - (FONT_DESCENT (FRAME_FONT (F)) - FRAME_BASELINE_OFFSET (F)))
 
 /* Produce glyphs/get display metrics for the display element IT is