John Snow writes:
> On 08/25/2015 02:20 PM, Markus Armbruster wrote:
>> Paolo Bonzini writes:
>>
>>> On 19/06/2015 10:09, Andreas Färber wrote:
>> -Lines are 80 characters; not longer.
>> +Lines should be 80 characters; try not to make them longer.
>> +
>> +Sometimes it is hard
On 08/25/2015 02:20 PM, Markus Armbruster wrote:
> Paolo Bonzini writes:
>
>> On 19/06/2015 10:09, Andreas Färber wrote:
> -Lines are 80 characters; not longer.
> +Lines should be 80 characters; try not to make them longer.
> +
> +Sometimes it is hard to do, especially when deal
Paolo Bonzini writes:
> On 19/06/2015 10:09, Andreas Färber wrote:
>>> > -Lines are 80 characters; not longer.
>>> > +Lines should be 80 characters; try not to make them longer.
>>> > +
>>> > +Sometimes it is hard to do, especially when dealing with QEMU subsystems
>>> > +that use long function o
On 19/06/2015 10:09, Andreas Färber wrote:
>> > -Lines are 80 characters; not longer.
>> > +Lines should be 80 characters; try not to make them longer.
>> > +
>> > +Sometimes it is hard to do, especially when dealing with QEMU subsystems
>> > +that use long function or symbol names. Even in that
Am 19.06.2015 um 09:29 schrieb Paolo Bonzini:
> 1) Line lengths above 80 characters do exist. They are rare, but
> they happen from time to time. An ignored rule is worse than an
> exception to the rule, so do the latter.
>
> 2) Mixed declarations also do exist at the top of #ifdef blocks.
> Rem
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 mea
On Fri, 19 Jun 2015 09:29:04 +0200
Paolo Bonzini wrote:
> 1) Line lengths above 80 characters do exist. They are rare, but
> they happen from time to time. An ignored rule is worse than an
> exception to the rule, so do the latter.
>
> 2) Mixed declarations also do exist at the top of #ifdef b
1) Line lengths above 80 characters do exist. They are rare, but
they happen from time to time. An ignored rule is worse than an
exception to the rule, so do the latter.
2) Mixed declarations also do exist at the top of #ifdef blocks.
Remark on this particular usage and suggest an alternative.