Convert spaces to tabs
This commit is contained in:
parent
7465574195
commit
243a15052f
19 changed files with 100 additions and 100 deletions
|
@ -605,7 +605,7 @@ perform_mission_msl(int dam, struct emp_qelem *missiles, coord x, coord y,
|
|||
use_up_msl:
|
||||
plp->plane.pln_effic = 0;
|
||||
putplane(plp->plane.pln_uid, &plp->plane);
|
||||
}
|
||||
}
|
||||
emp_remque(qp);
|
||||
free(qp);
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@ pr(char *format, ...)
|
|||
upr_player(player, C_DATA, buf);
|
||||
else
|
||||
/* normal text and user text are identical */
|
||||
pr_player(player, C_DATA, buf);
|
||||
pr_player(player, C_DATA, buf);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -621,9 +621,9 @@ ufindpfx(char *s, int n)
|
|||
|
||||
while (n && s[i]) {
|
||||
if ((s[i++] & 0xc0) == 0xc0)
|
||||
while ((s[i] & 0xc0) == 0x80)
|
||||
while ((s[i] & 0xc0) == 0x80)
|
||||
i++;
|
||||
--n;
|
||||
--n;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
|
|
@ -63,7 +63,7 @@ unit_list(struct emp_qelem *unit_list)
|
|||
if (type == EF_LAND)
|
||||
pr("lnd# land type x,y a eff sh gun xl mu tech retr\n");
|
||||
else
|
||||
pr("shp# ship type x,y fl eff mil sh gun pn he xl ln mob tech\n");
|
||||
pr("shp# ship type x,y fl eff mil sh gun pn he xl ln mob tech\n");
|
||||
|
||||
for (; qp != unit_list; qp = next) {
|
||||
next = qp->q_back;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue