On 19/06/2015 09:53, Thomas Huth wrote: > > - WARN("line over 80 characters\n" . $herecurr); > > + if ($length > 90) { > > + ERROR("line over 90 characters\n" . $herecurr); > > + } if ($length > 80) { > > Did you mean to use "elsif" here instead (because you've put the if on > the same line as the "}")?
Yes, and this patch was really meant as little more than RFC. Paolo