Mercurial > emacs
changeset 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 | cb2667416fa5 |
children | 25c779da6773 |
files | lib-src/ebrowse.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;