[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Re: KCL scoping bug?



It seems that the last bug fix of mine was misleading.
Some one deleted only the "if condition"s

	if (special_processed)

This will make things worse.  Delete the WHOLE if statements

	if (special_processed)
		continue;

-- Taiichi