]> git.cameronkatri.com Git - mandoc.git/blobdiff - term_ps.c
Plan9 has a man(7) implementation that looks extremely archaic,
[mandoc.git] / term_ps.c
index f3b77766cef3c870a26100ccab24034cee932c64..fa2f68fe26d3dd759da56ff1a6b5a7767136770a 100644 (file)
--- a/term_ps.c
+++ b/term_ps.c
@@ -1,4 +1,4 @@
-/*     $Id: term_ps.c,v 1.44 2010/09/04 20:18:53 kristaps Exp $ */
+/*     $Id: term_ps.c,v 1.45 2010/09/27 23:03:44 schwarze Exp $ */
 /*
  * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -908,7 +908,7 @@ ps_pletter(struct termp *p, int c)
 
        f = (int)p->engine.ps.lastf;
 
-       if (c <= 32 || (c - 32 > MAXCHAR)) {
+       if (c <= 32 || (c - 32 >= MAXCHAR)) {
                ps_putchar(p, ' ');
                p->engine.ps.pscol += (size_t)fonts[f].gly[0].wx;
                return;