From aad62add901e64f3640e8be4827b040eaf53ec4a 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 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. */ -- 2.34.1