From: bal Date: Thu, 3 Oct 1985 14:47:28 +0000 (+0000) Subject: 0 / -1 confusion for properties (bug reported by sater). X-Git-Tag: release-5-5~5401 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=98d06cffb28933a0f99580a3b56557c49fab68f0;p=ack.git 0 / -1 confusion for properties (bug reported by sater). --- diff --git a/mach/proto/ncg/subr.c b/mach/proto/ncg/subr.c index 4f3f25e66..825786a44 100644 --- a/mach/proto/ncg/subr.c +++ b/mach/proto/ncg/subr.c @@ -575,7 +575,7 @@ c3_p findcoerc(tp,tep) token_p tp; set_p tep; { if (cp->c3_texpno!=0) continue; } - if (cp->c3_prop==0) { /* no reg needed */ + if (cp->c3_prop<0) { /* no reg needed */ cinstance(cp->c3_repl,&rtoken,tp,0); if (match(&rtoken,tep,0)) return(cp);