From: bal Date: Thu, 3 Oct 1985 14:41:44 +0000 (+0000) Subject: 0 / -1 confusion for properties (bug reported by sater). X-Git-Tag: release-5-5~5403 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dcb4b71a3d356a6c331164ecd83e32d1061ef417;p=ack.git 0 / -1 confusion for properties (bug reported by sater). --- diff --git a/util/ncgg/coerc.c b/util/ncgg/coerc.c index a9991d3fb..d18c9bac7 100644 --- a/util/ncgg/coerc.c +++ b/util/ncgg/coerc.c @@ -201,7 +201,7 @@ n_coerc(ti,be,al,ge,rp,in) struct varinfo *al,*ge,*rp; iocc_t in; { c3p = & l_coercs[ncoercs-1]; c3p->c3_texpno = ti; c3p->c3_expr = be; - c3p->c3_prop = nallreg==0 ? 0 : allreg[0]; + c3p->c3_prop = nallreg==0 ? -1 : allreg[0]; c3p->c3_repl = rp->vi_int[0]; c3p->c3_codep = codeindex; dopattern(ti==0,VI_NULL,al,ge,rp,VI_NULL);