Indentation fixes; suspect indent-emp is to blame.

This commit is contained in:
Markus Armbruster 2004-02-28 18:06:11 +00:00
parent aa4e268d89
commit e67dca9d29
29 changed files with 89 additions and 133 deletions

View file

@ -204,29 +204,22 @@ printdiff(int mystat, double ours, struct natstr *natp, int what)
if (tolerance > 2 * ours)
tolerance = (int)(2 * ours);
if (check(buf, theirs, 2 * ours, -1.0, shift, what, tolerance)) ;
else if (check
(buf, theirs, 1.5 * ours, 2.0 * ours, shift, what,
else if (check(buf, theirs, 1.5 * ours, 2.0 * ours, shift, what,
tolerance)) ;
else if (check(buf, theirs, 1.2 * ours, 1.5 * ours, shift, what,
tolerance)) ;
else if (check
(buf, theirs, 1.2 * ours, 1.5 * ours, shift, what,
tolerance)) ;
else if (check
(buf, theirs, 1.1 * ours, 1.2 * ours, shift, what,
tolerance)) ;
else if (check
(buf, theirs, ours / 1.1, 1.1 * ours, shift, what,
tolerance)) ;
else if (check
(buf, theirs, ours / 1.2, ours / 1.1, shift, what,
tolerance)) ;
else if (check
(buf, theirs, ours / 1.5, ours / 1.2, shift, what,
tolerance)) ;
else if (check
(buf, theirs, ours / 2.0, ours / 1.5, shift, what,
tolerance)) ;
else if (check
(buf, theirs, -1.0, ours / 2.0, shift, what, tolerance)) ;
else if (check(buf, theirs, 1.1 * ours, 1.2 * ours, shift, what,
tolerance)) ;
else if (check(buf, theirs, ours / 1.1, 1.1 * ours, shift, what,
tolerance)) ;
else if (check(buf, theirs, ours / 1.2, ours / 1.1, shift, what,
tolerance)) ;
else if (check(buf, theirs, ours / 1.5, ours / 1.2, shift, what,
tolerance)) ;
else if (check(buf, theirs, ours / 2.0, ours / 1.5, shift, what,
tolerance)) ;
else if (check(buf, theirs, -1.0, ours / 2.0, shift, what,
tolerance)) ;
else
sprintf(buf, " n/a");
} else