From: ggn Date: Mon, 9 Nov 2015 21:03:47 +0000 (+0200) Subject: Fix for bug #51. Apparently 10 tokens weren't enough for modern programming! X-Git-Tag: v2.1.0~190 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=91beff6462d791d651b66ed0e1a4e1a82157fb6d Fix for bug #51. Apparently 10 tokens weren't enough for modern programming! --- diff --git a/token.h b/token.h index 501f1ea..3d3ea22 100644 --- a/token.h +++ b/token.h @@ -111,8 +111,8 @@ IFILE { #define TOKENSTREAM struct _tokenstream TOKENSTREAM { - TOKEN token[10]; // 10 ought to be enough for anybody - char * string[10]; // same for attached strings + TOKEN token[32]; // 32 ought to be enough for anybody (including XiA!) + char * string[32]; // same for attached strings }; // Information about a macro invocation