X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=token.c;fp=token.c;h=811ae854c401882da80adf742d988b41ee28b70b;hp=d6426600b8f5de1c94acf12256a80b0094eaac81;hb=7815a9c9504d879230a950318d434b411d045610;hpb=f88159cab2e7aff363c80c6fd69ddc772f464a4e diff --git a/token.c b/token.c index d642660..811ae85 100644 --- a/token.c +++ b/token.c @@ -1005,26 +1005,6 @@ DEBUG { printf("TokenizeLine: Calling fpop() from SRC_IFILE...\n"); } curlineno++; // Bump line number lntag = SPACE; - if (as68_flag) - { - // AS68 compatibility, throw away all lines starting with - // back-quotes, tildes, or '*' - // On other lines, turn the first '*' into a semi-colon. - if (*ln == '`' || *ln == '~' || *ln == '*') - *ln = ';'; - else - { - for(p=ln; *p!=EOS; p++) - { - if (*p == '*') - { - *p = ';'; - break; - } - } - } - } - break; // Macro-block: