From 1a9a8516722a5d8a0fddfcf8199309d079c61644 Mon Sep 17 00:00:00 2001 From: Parth Wazurkar Date: Sat, 8 Sep 2018 21:27:32 +0530 Subject: [PATCH] [gf] Some more fixes. --- src/gf/gf.c | 2 +- src/gf/gfdrivr.c | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/gf/gf.c b/src/gf/gf.c index a41ec26c4..2cefca699 100644 --- a/src/gf/gf.c +++ b/src/gf/gf.c @@ -2,7 +2,7 @@ * * gf.c * - * FreeType font driver for TeX's GF FONT files + * FreeType font driver for METAFONT GF FONT files * * Copyright 1996-2018 by * David Turner, Robert Wilhelm, and Werner Lemberg. diff --git a/src/gf/gfdrivr.c b/src/gf/gfdrivr.c index 2c9092da1..0002ff0f3 100644 --- a/src/gf/gfdrivr.c +++ b/src/gf/gfdrivr.c @@ -461,9 +461,9 @@ " bm->off_x is %ld\n" " bm->off_y is %ld\n" " bm->mv_x is %ld\n" - " bm->mv_y is %ld\n", - bm->bbx_height, bm->bbx_width, bm->off_x, bm->off_y, - bm->mv_x, bm->mv_y )); + " bm->mv_y is %ld\n", bm->bbx_height, bm->bbx_width, + bm->off_x, bm->off_y, + bm->mv_x, bm->mv_y )); ft_synthesize_vertical_metrics( &slot->metrics, bm->bbx_height * 64 ); @@ -537,11 +537,10 @@ " End Char : %d\n" " font_bbx_w : %d\n" " font_bbx_h : %d\n" - " slant : %d\n", - parser.FontInfo->cs, parser.FontInfo->design_size, - parser.FontInfo->begin_char, parser.FontInfo->end_char, - parser.FontInfo->font_bbx_w, parser.FontInfo->font_bbx_h, - parser.FontInfo->slant )); + " slant : %d\n", parser.FontInfo->cs, parser.FontInfo->design_size, + parser.FontInfo->begin_char, parser.FontInfo->end_char, + parser.FontInfo->font_bbx_w, parser.FontInfo->font_bbx_h, + parser.FontInfo->slant )); tfm->tfm_parser_funcs->done( &parser ); }