]> Shamusworld >> Repos - rmac/blobdiff - token.c
Remove all remaining traces of "as68_flag" from the codebase (issue #186)
[rmac] / token.c
diff --git a/token.c b/token.c
index d6426600b8f5de1c94acf12256a80b0094eaac81..811ae854c401882da80adf742d988b41ee28b70b 100644 (file)
--- 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: