From: ceriel Date: Fri, 3 Apr 1987 16:48:53 +0000 (+0000) Subject: Bug fix: a character was compared to op_lab, which is >= 128. X-Git-Tag: release-5-5~4228 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=aad62add901e64f3640e8be4827b040eaf53ec4a;p=ack.git Bug fix: a character was compared to op_lab, which is >= 128. --- diff --git a/util/ego/share/get.c b/util/ego/share/get.c index b2f15f1ce..4886efc42 100644 --- a/util/ego/share/get.c +++ b/util/ego/share/get.c @@ -392,7 +392,7 @@ line_p read_line(p_out) break; case OPINSTRLAB: INSTRLAB(lnp) = getshort(); - if (instr == op_lab) { + if ((instr & BMASK) == op_lab) { /* defining occurrence of an * instruction label. */