From: cuz Date: Mon, 1 Sep 2003 11:20:13 +0000 (+0000) Subject: Increase the number of recursive macro expansions X-Git-Tag: V2.12.0~1341 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fff8289744db5235f30a844731294687fa21cf48;p=cc65 Increase the number of recursive macro expansions git-svn-id: svn://svn.cc65.org/cc65/trunk@2428 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/preproc.c b/src/cc65/preproc.c index d835c075b..76fe15d5a 100644 --- a/src/cc65/preproc.c +++ b/src/cc65/preproc.c @@ -698,8 +698,8 @@ static void PreprocessLine (void) int Done = Pass1 (line, mline); /* Repeatedly expand macros in the line */ - for (I = 0; I < 5; ++I) { - /* Swap mline and line */ + for (I = 0; I < 256; ++I) { + /* Swap mline and line */ SwapLineBuffers (); if (Done) { break;