From fff8289744db5235f30a844731294687fa21cf48 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 1 Sep 2003 11:20:13 +0000 Subject: [PATCH] Increase the number of recursive macro expansions git-svn-id: svn://svn.cc65.org/cc65/trunk@2428 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/preproc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;