]> git.sur5r.net Git - cc65/commitdiff
Changed a function name
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 25 Sep 2002 10:42:42 +0000 (10:42 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 25 Sep 2002 10:42:42 +0000 (10:42 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1404 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/preproc.c

index 8a35d0f27c692e3bb475f098ba65d6a4878d9c77..67aaeee62170e541059aeed2e5aa013924103073 100644 (file)
@@ -661,7 +661,7 @@ static int Pass2 (const char* From, char* To)
 
 
 
-static void xlateline (void)
+static void TranslateLine (void)
 /* Translate one line. */
 {
     int cnt;
@@ -765,7 +765,7 @@ static int DoIf (int Skip)
     Preprocessing = 1;
 
     /* Expand macros in this line */
-    xlateline ();
+    TranslateLine ();
 
     /* Prime the token pump (remove old tokens from the stream) */
     NextToken ();
@@ -1030,7 +1030,7 @@ void Preprocess (void)
     }
 
 Done:
-    xlateline ();
+    TranslateLine ();
     Print (stdout, 2, "line: %s\n", line);
 }