X-Git-Url: https://git.cworth.org/git?p=mnemon;a=blobdiff_plain;f=mnemon.c;h=33f2c260132a6efff082da9989da5ca6be6ef739;hp=ac7c7652d5fd07c6c0dc8c32669eeede5a52947f;hb=565b76aa595b6a9ed43219b590cf2e10afcf7e9a;hpb=cb853e60989f34c4608ac3c521bf90a01d0387d9 diff --git a/mnemon.c b/mnemon.c index ac7c765..33f2c26 100644 --- a/mnemon.c +++ b/mnemon.c @@ -578,7 +578,7 @@ mnemon_load_category (mnemon_t *mnemon, /* An initial digit means we hit an item. Trigger the * spaghetti machine. */ - if (*line >= '0' && *line <= '9') + if ((*line >= '0' && *line <= '9') || *line == '-') goto PARSE_BIN; equal = strchr (line, '=');