]> git.sur5r.net Git - cc65/commitdiff
Increase the number of recursive macro expansions
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 1 Sep 2003 11:20:13 +0000 (11:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 1 Sep 2003 11:20:13 +0000 (11:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2428 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/preproc.c

index d835c075b50d1ffb7bfaecd736a878fdbd1d3e6d..76fe15d5ab8d887e7a58ba7520c7f84f5a285eab 100644 (file)
@@ -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;