summaryrefslogtreecommitdiff
path: root/print/t1utils/files/patch-t1asm.c
blob: f920b4a38c4aec65ac1e2b9ef4a2a539ec664edd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
   }