From: ceriel Date: Tue, 7 Nov 1995 10:37:59 +0000 (+0000) Subject: Fixed bug with labels X-Git-Tag: release-5-5~77 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=45655760219fb5032cd266c792955c095f8cd2c8;p=ack.git Fixed bug with labels --- diff --git a/lang/pc/comp/label.c b/lang/pc/comp/label.c index ee8d11d7d..0f0fe8a7a 100644 --- a/lang/pc/comp/label.c +++ b/lang/pc/comp/label.c @@ -50,7 +50,7 @@ chk_labels(Slevel) struct lab *plab = df->lab_next; while( plab ) { - if( plab->lb_level > 1 ) + if( plab->lb_level == Slevel ) plab->lb_level--; plab = plab->lb_next; }