Convert spaces to tabs

This commit is contained in:
Markus Armbruster 2010-05-22 15:40:35 +02:00
parent 7465574195
commit 243a15052f
19 changed files with 100 additions and 100 deletions

View file

@ -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;
}