Convert spaces to tabs
This commit is contained in:
parent
7465574195
commit
243a15052f
19 changed files with 100 additions and 100 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue