1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/vietnamese/vnpstext/files/patch-03
David E. O'Brien c972382ac4 Vnpstext converts your 8-bit Vietnamese text to a PostScript
file suitable for printing to a PostScript printer.
1996-12-09 02:07:06 +00:00

23 lines
533 B
Plaintext

--- vnpstext.c.orig Wed Sep 2 14:01:59 1992
+++ vnpstext.c Sun Dec 8 01:24:48 1996
@@ -86,7 +86,8 @@
dofile(input)
FILE *input;
{
- u_char line[1024];
+#define LINESIZE 1024
+ u_char line[LINESIZE];
register u_char *s;
register int pageno = 1;
register short col = 0;
@@ -95,7 +96,8 @@
printf("StartDoc\n");
- while (gets(line)) {
+ while (fgets(line, LINESIZE, stdin)) {
+ if (line[ strlen(line) - 1 ] == '\n') line[ strlen(line) - 1 ] = '\0';
if (!*line) printf("B\n");
else {