Changeset 3441:f78b184ef598 for alias.c

Show
Ignore:
Timestamp:
2003-07-24 11:40:50 (5 years ago)
Author:
Vincent Lefevre <vincent@…>
Branch:
HEAD
Message:

Some functions/macros like isspace take an int and require the
argument to have the value of an unsigned char (or EOF). Under
Solaris, gcc complains when the argument is a char (as this is a
possible bug, on platforms where char is signed, like Solaris). The
attached patch fixes such problems (well, perhaps I've changed more
than necessary, but this doesn't hurt).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • alias.c

    r3317 r3441  
    354354{ 
    355355  return (c == '-' || c == '_' || c == '+' || c == '=' || c == '.' || 
    356           isalnum (c)); 
     356          isalnum ((unsigned char) c)); 
    357357} 
    358358