1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +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. */
{
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);
}