Indentation fixes; suspect indent-emp is to blame.
This commit is contained in:
parent
aa4e268d89
commit
e67dca9d29
29 changed files with 89 additions and 133 deletions
|
@ -64,14 +64,11 @@ demo(void)
|
|||
cash = natp->nat_money;
|
||||
if (!snxtsct(&nstr, player->argp[1]))
|
||||
return RET_SYN;
|
||||
if ((p =
|
||||
getstarg(player->argp[2], "Number to de-mobilize : ", buf)) == 0)
|
||||
if (!(p = getstarg(player->argp[2], "Number to de-mobilize : ", buf)))
|
||||
return RET_SYN;
|
||||
number = atoi(p);
|
||||
if (!
|
||||
(p =
|
||||
getstarg(player->argp[3],
|
||||
"New civilians on active reserve? (y/n) ", buf)))
|
||||
if (!(p = getstarg(player->argp[3],
|
||||
"New civilians on active reserve? (y/n) ", buf)))
|
||||
return RET_SYN;
|
||||
if (*p != 'y' && *p != 'n')
|
||||
return RET_SYN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue