From c1324da3fce8184829259fddf5f6d492fee3c49e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 31 May 2021 17:42:10 +0530 Subject: [PATCH] missing newline in debug print --- kitty/core_text.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/core_text.m b/kitty/core_text.m index 05ae87f20..729f6ec3d 100644 --- a/kitty/core_text.m +++ b/kitty/core_text.m @@ -378,7 +378,7 @@ debug("\tline height from line origins: %f\n", line_height); debug("\tline bounds: origin-y: %f height: %f\n", bounds.origin.y, bounds.size.height); debug("\tline bounds-no-leading: origin-y: %f height: %f\n", bounds.origin.y, bounds.size.height); - debug("\tbounds metrics: ascent: %f", bounds_ascent); + debug("\tbounds metrics: ascent: %f\n", bounds_ascent); debug("\tline metrics: ascent: %f descent: %f leading: %f\n", typographic_ascent, typographic_descent, typographic_leading); debug("\tfont metrics: ascent: %f descent: %f leading: %f underline_position: %f\n", self->ascent, self->descent, self->leading, self->underline_position); debug("\tcell_height: %u baseline: %u underline_position: %u\n", *cell_height, *baseline, *underline_position);