[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: (info-stnd) search.c:regexp_search() finishes too early
From: |
Karl Berry |
Subject: |
Re: (info-stnd) search.c:regexp_search() finishes too early |
Date: |
Fri, 7 Feb 2014 22:27:54 GMT |
+ if (previous_content != binding->buffer ||
+ previous_start != start ||
+ previous_end != end)
Apropos of nothing, GNU coding standards would format this as:
if (previous_content != binding->buffer
|| previous_start != start
|| previous_end != end)
Connective operators at the beginning of multiline conditions ...
k