summaryrefslogtreecommitdiffstats
path: root/term_ps.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-07-20 10:56:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-07-20 10:56:03 +0000
commitf4173e3c44a199bfbd7efb30b4ee4f84855706ba (patch)
treea238719d9d3354775453721c21b82962af835d90 /term_ps.c
parente3b9d34e7bf3e1e75514451170cb01d7a2f60195 (diff)
downloadmandoc-f4173e3c44a199bfbd7efb30b4ee4f84855706ba.tar.gz
Use floating-point -Tps "moveto" arguments to smooth out column and row
misalignments.
Diffstat (limited to 'term_ps.c')
-rw-r--r--term_ps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/term_ps.c b/term_ps.c
index b991a4b9..21a20b79 100644
--- a/term_ps.c
+++ b/term_ps.c
@@ -39,7 +39,7 @@
/* Convert an AFM unit "x" to a PostScript points */
#define AFM2PNT(p, x) /* LINTED */ \
- (size_t)((double)(x) / (1000.0 / (double)(p)->engine.ps.scale))
+ ((double)(x) / (1000.0 / (double)(p)->engine.ps.scale))
struct glyph {
size_t wx; /* WX in AFM */
@@ -635,8 +635,8 @@ ps_begin(struct termp *p)
printf("%%%%Pages: (atend)\n");
printf("%%%%PageOrder: Ascend\n");
printf("%%%%DocumentMedia: Default %zu %zu 0 () ()\n",
- AFM2PNT(p, p->engine.ps.width),
- AFM2PNT(p, p->engine.ps.height));
+ (size_t)AFM2PNT(p, p->engine.ps.width),
+ (size_t)AFM2PNT(p, p->engine.ps.height));
printf("%%%%DocumentNeededResources: font");
for (i = 0; i < (int)TERMFONT__MAX; i++)
printf(" %s", fonts[i].name);
@@ -675,7 +675,7 @@ ps_pletter(struct termp *p, int c)
*/
if ( ! (PS_INLINE & p->engine.ps.flags)) {
- ps_printf(p, "%zu %zu moveto\n(",
+ ps_printf(p, "%.3f %.3f moveto\n(",
AFM2PNT(p, p->engine.ps.pscol),
AFM2PNT(p, p->engine.ps.psrow));
p->engine.ps.flags |= PS_INLINE;