Changeset 935:b73b9dd0ff06 for charset.c

Show
Ignore:
Timestamp:
1999-03-02 14:13:29 (10 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Some small fixes from Vikas.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.c

    r835 r935  
    278278  } 
    279279 
    280   for (t = line; *t && isspace (*t); t++) 
     280  for (t = line; *t && isspace ((unsigned char) *t); t++) 
    281281    ; 
    282282 
     
    303303  fix_symbol (descr->symbol, m); 
    304304 
    305   for (t = u; *t && isspace (*t); t++) 
     305  for (t = u; *t && isspace ((unsigned char) *t); t++) 
    306306    ; 
    307307 
    308   for (u = t; *u && !isspace (*u); u++) 
     308  for (u = t; *u && !isspace ((unsigned char) *u); u++) 
    309309    ; 
    310310