From a91e33ce96cb27c451d15829f48b2b55a69cbdbd Mon Sep 17 00:00:00 2001 From: sater Date: Mon, 2 Dec 1985 13:55:06 +0000 Subject: [PATCH] Corrected error in otime of initialisation of booleans --- util/ncgg/cgg.y | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/ncgg/cgg.y b/util/ncgg/cgg.y index 34af468ed..1fca1cc0d 100644 --- a/util/ncgg/cgg.y +++ b/util/ncgg/cgg.y @@ -640,9 +640,11 @@ optsecondstring ; onepattern - : { inithall(); startline=lineno; tokpatlen=0; } + : { inithall(); startline=lineno; + tokpatlen=0; optexact=0; optstack=0; + } kills allocates generates yields leaving - { optexact=0; optstack=0; + { patindex[npatterns++]=codeindex; checkhall(); dopattern(0,$2,$3,$4,$5,$6); -- 2.34.1