X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=token.h;h=4a9b1105bb270cd4dd2db2a7efc0ca739f93d92f;hp=3867f7e8a59560863980345d90b92e64e2908205;hb=4ca28ba07da9f3848c2e3db0e2e9cbcaa787dd29;hpb=f3c7d186a15b89c39e360b9cc89545a0d24bd6a4 diff --git a/token.h b/token.h index 3867f7e..4a9b110 100644 --- a/token.h +++ b/token.h @@ -146,6 +146,7 @@ IREPT { LLIST * ir_firstln; // Pointer to first line LLIST * ir_nextln; // Pointer to next line uint32_t ir_count; // Repeat count (decrements) + uint32_t lineno; // Repeat line number (Convert this to global instead of putting it here?) }; // Exported variables @@ -153,7 +154,7 @@ extern int lnsave; extern uint16_t curlineno; extern char * curfname; extern WORD cfileno; -extern TOKENPTR tok; +extern TOKEN * tok; extern char lnbuf[]; extern char lntag; extern char tolowertab[];