Mercurial > emacs
diff lib-src/ebrowse.c @ 34610:beea10bab07e
(operator_name): Cast argument of isalpha to
unsigned char.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 15 Dec 2000 14:33:39 +0000 |
| parents | db980c0e762d |
| children | ff4771c51345 |
line wrap: on
line diff
--- a/lib-src/ebrowse.c Fri Dec 15 14:33:25 2000 +0000 +++ b/lib-src/ebrowse.c Fri Dec 15 14:33:39 2000 +0000 @@ -2867,7 +2867,7 @@ 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;
