Subject: CVS commit: src
To: None <source-changes@netbsd.org>
From: Christos Zoulas <christos@netbsd.org>
List: source-changes
Date: 11/13/1998 08:48:02
Module Name:	src
Committed By:	christos
Date:		Fri Nov 13 16:48:01 UTC 1998

Modified Files:
	src/usr.bin/xlint/lint1: cgram.y
Log Message:
Fix problems with LINTED comment:

if (a) b;
/*LINTED*/
c;

if (a) { b; }
/*LINTED*/
c;

do { b; }
/*LINTED*/
while (c);

Produced warnings for c.