no wide character constants; sigh

This commit is contained in:
rsc 2005-05-07 22:42:06 +00:00
parent bc7da02954
commit bb0266fe61
9 changed files with 43 additions and 43 deletions

View file

@ -847,11 +847,11 @@ sce(void)
{
int n = 1;
while (C != L'\n' && !(L'0' <= c && c <= L'9'))
while (C != '\n' && !('0' <= c && c <= '9'))
;
if (c != L'\n') {
for (n = c-L'0';'0' <= C && c <= L'9';)
n = n*10 + c-L'0';
if (c != '\n') {
for (n = c-'0';'0' <= C && c <= '9';)
n = n*10 + c-'0';
}
while(n) {
if(C == '.') {