From 110d275401323622371badb355bf54fc28b22c1b Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 3 Apr 1987 16:48:53 +0000 Subject: [PATCH] Bug fix: a character was compared to op_lab, which is >= 128. --- util/ego/share/get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ego/share/get.c b/util/ego/share/get.c index b2f15f1c..4886efc4 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. */