diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-11 12:34:44 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-11 12:34:44 +0000 |
commit | 9ace6b0c25ac0b471098c1f8708cf01b21109cd4 (patch) | |
tree | 99f9873e368c8d667681b49272328528ac1d6333 /Build | |
parent | 9a60d845b989b7ea64817858e61f2011cd7d0be2 (diff) |
fix the previous
git-svn-id: svn://tug.org/texlive/trunk@17422 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/afm2pl/afm2pl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/afm2pl/afm2pl.c b/Build/source/texk/afm2pl/afm2pl.c index 33e8bfa35b2..7820119195a 100644 --- a/Build/source/texk/afm2pl/afm2pl.c +++ b/Build/source/texk/afm2pl/afm2pl.c @@ -864,7 +864,7 @@ changeadobe(void) /* Avoid output of '(SLANT R -0.000000)' due to floating point * rounding; neither round() nor fabs() need be defined. */ - if ((newslant < 0.0) && (newslant*2000000.0 > 0.0)) + if ((newslant < 0.0) && (newslant*2000000.0 >= -1.0)) newslant = 0.0; /* if !keepligs, remove native ligatures */ |