X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=procln.c;h=9987aad70ef4c836d81a1fb08ea4fc8f95aae579;hp=743c9b96e13b61da115d038dc8f529578849eee7;hb=6c1bc379012b1c1ca369e71e39509f3538042382;hpb=b10167d55798ea184f97fafda075255c0852f3b6 diff --git a/procln.c b/procln.c index 743c9b9..9987aad 100644 --- a/procln.c +++ b/procln.c @@ -208,7 +208,8 @@ as68label: } } - if (*tok == EOL) // EOL is legal here... + // EOL is legal here... + if (*tok == EOL) goto normal; // Next token MUST be a symbol @@ -259,11 +260,11 @@ as68label: siz = SIZN; if (*tok == DOTW) - siz = SIZW, ++tok; + siz = SIZW, tok++; else if (*tok == DOTL) - siz = SIZL, ++tok; + siz = SIZL, tok++; else if (*tok == DOTB) - siz = SIZB, ++tok; + siz = SIZB, tok++; // Do special directives (500..999) (These must be handled in "real time") if (state >= 500 && state < 1000)