]> git.eshelyaron.com Git - emacs.git/commitdiff
(produce_glyphs): Set iterator's physical height
authorGerd Moellmann <gerd@gnu.org>
Fri, 6 Aug 1999 13:59:39 +0000 (13:59 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 6 Aug 1999 13:59:39 +0000 (13:59 +0000)
information.

src/term.c

index 7c05f7cbf10e87113b22291745c557dc222ef5fc..8a243317869c2df57d6f3e50f40691d041034d30 100644 (file)
@@ -1832,8 +1832,8 @@ produce_glyphs (it)
      the caller.  */
   if (it->area == TEXT_AREA)
     it->current_x += it->pixel_width;
-  it->ascent = it->max_ascent = 0;
-  it->descent = it->max_descent = 1;
+  it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
+  it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
 }