From: ceriel Date: Fri, 26 Jan 1990 17:12:23 +0000 (+0000) Subject: Fixed check in COM X-Git-Tag: release-5-5~1861 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=4de10af2128ae01ea1daad56cf1ad0b56cf82909;p=ack.git Fixed check in COM --- diff --git a/util/int/ChangeLog b/util/int/ChangeLog index 8415e9a36..f89c10568 100644 --- a/util/int/ChangeLog +++ b/util/int/ChangeLog @@ -1,3 +1,6 @@ +26-Jan-90 Ceriel Jacobs (ceriel) at ceriel + Fixed check in COM instruction. + 26-Jan-90 Ceriel Jacobs (ceriel) at ceriel Fixed so that two consecutive SIG's have no effect. diff --git a/util/int/do_logic.c b/util/int/do_logic.c index 13b3900ca..f9e4071f4 100644 --- a/util/int/do_logic.c +++ b/util/int/do_logic.c @@ -201,7 +201,7 @@ DoCOMz() spoilFRA(); l = arg_w(l); for (p = SP; p < (SP + l); p++) { - check_def(p, l); + check_def(p, 0); stack_loc(p) = ~stack_loc(p); } }