]> Shamusworld >> Repos - rmac/blobdiff - procln.c
Remove all remaining traces of "as68_flag" from the codebase (issue #186)
[rmac] / procln.c
index 4e5a846947e636461b6e9beac1f78cfdda8f8a17..77b7b50f065cb7e4a4b98c7087e957376c473647 100644 (file)
--- a/procln.c
+++ b/procln.c
@@ -222,23 +222,9 @@ loop1:                                                                             // Internal line processing loop
        // Skip past label (but record it)
        if (j == ':' || j == DCOLON)
        {
-as68label:
                label = string[tok[1]];                         // Get label name
                labtyp = tok[2];                                        // Get label type
                tok += 3;                                                       // Go to next line token
-
-               // AS68 MODE:
-               // Looks like another label follows the previous one, so handle
-               // the previous one until there aren't any more
-               if (as68_flag && (*tok == SYMBOL && tok[2] == ':'))
-               {
-                       if (HandleLabel(label, labtyp) != 0)
-                               goto loop;
-
-                       label_defined = label;
-
-                       goto as68label;
-               }
        }
 
        // EOL is legal here...