When I submitted my patch with the bounding-box scaling / kerning implementation, I made a typo in config.def.h. Unfortunately I didn't notice until after it was applied, and it's been haunting me ever since. Attached is a one-line change to fix the typo.
Eric
>From 05e6544ba2d38725b923b8f96212eb468d3d1b96 Mon Sep 17 00:00:00 2001 From: Eric Pruitt <eric.pru...@gmail.com> Date: Wed, 18 Jun 2014 08:32:45 -0500 Subject: [PATCH] Fix typo in config.def.h --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 6e2be9a..3e2a61e 100644 --- a/config.def.h +++ b/config.def.h @@ -9,7 +9,7 @@ static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=fals static int borderpx = 2; static char shell[] = "/bin/sh"; -/* Kerning / character bounding-box mutlipliers */ +/* Kerning / character bounding-box multipliers */ static float cwscale = 1.0; static float chscale = 1.0; -- 1.7.10.4