diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-22 16:55:23 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-22 16:55:23 +0000 |
commit | ad65177ebf15e110f70321f2e8bf9d030fe76cd4 (patch) | |
tree | f49e1542b2ddb318bd6c9d000e6c236bb2b0ab3d /print | |
parent | ae5823726eae938c26813ecba4ffec7592dee907 (diff) | |
download | ports-ad65177ebf15e110f70321f2e8bf9d030fe76cd4.tar.gz ports-ad65177ebf15e110f70321f2e8bf9d030fe76cd4.zip |
Notes
Diffstat (limited to 'print')
-rw-r--r-- | print/t1utils/files/patch-t1asm.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/print/t1utils/files/patch-t1asm.c b/print/t1utils/files/patch-t1asm.c new file mode 100644 index 000000000000..f920b4a38c4a --- /dev/null +++ b/print/t1utils/files/patch-t1asm.c @@ -0,0 +1,29 @@ +--- t1asm.c.orig 2004-01-24 02:28:23 UTC ++++ t1asm.c +@@ -280,7 +280,7 @@ static int check_line_charstring() + the newline is put into line[]. When terminated by '{', the '{' is not put + into line[], and the flag start_charstring is set to 1. */ + +-static void getline() ++static void get_line() + { + int c; + char *p = line; +@@ -725,7 +725,7 @@ particular purpose.\n"); + without /Subrs sections and provided a patch. */ + + while (!feof(ifp) && !ferror(ifp)) { +- getline(); ++ get_line(); + + if (!ever_active) { + if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) { +@@ -796,7 +796,7 @@ particular purpose.\n"); + + /* There may be additional code. */ + while (!feof(ifp) && !ferror(ifp)) { +- getline(); ++ get_line(); + eexec_string(line); + } + |