X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=procln.c;fp=procln.c;h=77b7b50f065cb7e4a4b98c7087e957376c473647;hb=7815a9c9504d879230a950318d434b411d045610;hp=4e5a846947e636461b6e9beac1f78cfdda8f8a17;hpb=f88159cab2e7aff363c80c6fd69ddc772f464a4e;p=rmac diff --git a/procln.c b/procln.c index 4e5a846..77b7b50 100644 --- 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...