diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-12-15 14:33:39 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-12-15 14:33:39 +0000 |
commit | db3a495ec01035d21b6a8891c2c9b82a55a6e6b3 (patch) | |
tree | 6608e3ae87e90f65598b678d2bc7cd454bd9d52b /lib-src/ebrowse.c | |
parent | 859cbb401c0f233886ac8f13a1bb2ab7bf09f0a8 (diff) |
(operator_name): Cast argument of isalpha to
unsigned char.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r-- | lib-src/ebrowse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 7fbcba2d63..b5a9f48946 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -2867,7 +2867,7 @@ operator_name (sc) MATCH (); /* If this is a simple operator like `+', stop now. */ - if (!isalpha (*s) && *s != '(' && *s != '[') + if (!isalpha ((unsigned char) *s) && *s != '(' && *s != '[') break; ++tokens_matched; |