summaryrefslogtreecommitdiff
path: root/source/luametatex/source/tex/texfont.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/luametatex/source/tex/texfont.c')
-rw-r--r--source/luametatex/source/tex/texfont.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/luametatex/source/tex/texfont.c b/source/luametatex/source/tex/texfont.c
index ac0ea1290..0f1cf6117 100644
--- a/source/luametatex/source/tex/texfont.c
+++ b/source/luametatex/source/tex/texfont.c
@@ -1958,7 +1958,9 @@ scaled tex_char_depth_from_glyph(halfword g)
scaled tex_char_total_from_glyph(halfword g)
{
charinfo *ci = tex_aux_char_info(glyph_font(g), glyph_character(g));
- return tex_aux_glyph_y_scaled(g, ci->height + ci->depth);
+ scaled ht = ci->height;
+ scaled dp = ci->depth;
+ return tex_aux_glyph_y_scaled(g, (ht > 0 ? ht : 0) + (dp > 0 ? dp : 0)); /* so not progression */
}
scaled tex_char_italic_from_glyph(halfword g)