nl_create_while_one_liner
Whether to remove a newline in simple unbraced while
statements, turning them into one-liners, as in while (expr)\n stmt;
=> while (expr) stmt;
.
Possible values are true and false, default false.
Examples
true
Before:
while (sum<x)
sum = sum+sum;
After
while (sum<x) sum = sum+sum;
false
Example remains unchanged.
See also
- nl_create_for_one_liner: Whether to remove a newline in simple unbraced
for
statements - nl_create_if_one_liner: Whether to remove a newline in simple unbraced
if
statements, - nl_squeeze_ifdef: Whether to remove blanks after
#ifxx
and#elxx
, or before#elxx
and#endif
. - nl_after_if: Add or remove blank line after
if
statement. - nl_before_case: Whether to add a newline before
case
, and a blank line before acase
statement that follows a;
or}
.