Changeset 935:b73b9dd0ff06 for charset.c
Legend:
- Unmodified
- Added
- Removed
-
charset.c
r835 r935 278 278 } 279 279 280 for (t = line; *t && isspace ( *t); t++)280 for (t = line; *t && isspace ((unsigned char) *t); t++) 281 281 ; 282 282 … … 303 303 fix_symbol (descr->symbol, m); 304 304 305 for (t = u; *t && isspace ( *t); t++)305 for (t = u; *t && isspace ((unsigned char) *t); t++) 306 306 ; 307 307 308 for (u = t; *u && !isspace ( *u); u++)308 for (u = t; *u && !isspace ((unsigned char) *u); u++) 309 309 ; 310 310
