Delete dead code, fix indentation, spelling, obvious warning

avoidance, doc fixes.  No functional changes.
This commit is contained in:
Markus Armbruster 2004-02-27 20:13:28 +00:00
parent f5e49a830c
commit d2e0c8224b
11 changed files with 23 additions and 24 deletions

View file

@ -73,9 +73,10 @@ nstr_exec(struct nscstr *conds, register int ncond, void *ptr, int type)
lhs = decode(player->cnum, nsc->fld1, ptr, type);
op = oper;
if ((op == '<' && lhs >= rhs) ||
(op == '=' && lhs != rhs) ||
(op == '>' && lhs <= rhs) || (op == '#' && lhs == rhs))
if ((op == '<' && lhs >= rhs)
|| (op == '=' && lhs != rhs)
|| (op == '>' && lhs <= rhs)
|| (op == '#' && lhs == rhs))
return 0;
}
return 1;