X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=token.c;h=cd3c2ffc42aa4353adb985f17a58d6f26365f6a4;hp=66399d6c5078e49be637ce3cdc86b4eb4a868526;hb=5373852f573b91ebda175d3dc7fc111e2c5ca872;hpb=21b541fc477234e0823876eabf8ee556eb94c78e diff --git a/token.c b/token.c index 66399d6..cd3c2ff 100644 --- a/token.c +++ b/token.c @@ -1213,12 +1213,12 @@ if (debug) printf("TokenizeLine: Calling fpop() from SRC_IREPT...\n"); *p++ = EOS; continue; case '$': // $, hex constant - if ((int)chrtab[*ln] & HDIGIT) + if (chrtab[*ln] & HDIGIT) { v = 0; // Parse the hex value - while ((int)hextab[*ln] >= 0) + while (hextab[*ln] >= 0) v = (v << 4) + (int)hextab[*ln++]; // ggn: Okay, some comments here are in order I think....