From ffdc8396c56fbf821318bf89a72e768520263228 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 25 Sep 2002 10:42:42 +0000 Subject: [PATCH] Changed a function name git-svn-id: svn://svn.cc65.org/cc65/trunk@1404 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/preproc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cc65/preproc.c b/src/cc65/preproc.c index 8a35d0f27..67aaeee62 100644 --- a/src/cc65/preproc.c +++ b/src/cc65/preproc.c @@ -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); }