summaryrefslogtreecommitdiffstats
path: root/usr.bin/vgrind/vfontedpr.c
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>1996-09-08 18:23:53 +0000
committerjoerg <joerg@FreeBSD.org>1996-09-08 18:23:53 +0000
commit7f766016b3f0e6f87f36790b650231b6d2acdbe0 (patch)
tree7cbfdcd38cac4a311a34210854b575c9805e4653 /usr.bin/vgrind/vfontedpr.c
parent6ba270257af91a5aaf788d6e7ccb28acf3ad9e3f (diff)
downloadFreeBSD-src-7f766016b3f0e6f87f36790b650231b6d2acdbe0.zip
FreeBSD-src-7f766016b3f0e6f87f36790b650231b6d2acdbe0.tar.gz
. make vgrind 8-bit clean; note that it still implicitly assumes
ISO-8859-1, since the characters are simply being passed on to groff . introduce an option to override the silly default to `psroff' as the post-processor . document the new option
Diffstat (limited to 'usr.bin/vgrind/vfontedpr.c')
-rw-r--r--usr.bin/vgrind/vfontedpr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vgrind/vfontedpr.c b/usr.bin/vgrind/vfontedpr.c
index 523e415..3be249b 100644
--- a/usr.bin/vgrind/vfontedpr.c
+++ b/usr.bin/vgrind/vfontedpr.c
@@ -565,14 +565,14 @@ putKcp (start, end, force)
if (i > 0) {
ps("\\*(+K");
do
- putcp(*start++);
+ putcp((unsigned char)*start++);
while (--i > 0);
ps("\\*(-K");
continue;
}
}
- putcp (*start++);
+ putcp ((unsigned char)*start++);
}
}
OpenPOWER on IntegriCloud