Bug fix: a character was compared to op_lab, which is >= 128.
authorceriel <none@none>
Fri, 3 Apr 1987 16:48:53 +0000 (16:48 +0000)
committerceriel <none@none>
Fri, 3 Apr 1987 16:48:53 +0000 (16:48 +0000)
util/ego/share/get.c

index b2f15f1..4886efc 100644 (file)
@@ -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.
                                 */