1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00

Changed a function name

git-svn-id: svn://svn.cc65.org/cc65/trunk@1404 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-09-25 10:42:42 +00:00
parent 7215ebd145
commit ffdc8396c5

View File

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