From: Gerd Moellmann Date: Fri, 15 Dec 2000 14:33:39 +0000 (+0000) Subject: (operator_name): Cast argument of isalpha to X-Git-Tag: emacs-pretest-21.0.95~484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db3a495ec01035d21b6a8891c2c9b82a55a6e6b3;p=emacs.git (operator_name): Cast argument of isalpha to unsigned char. --- diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 7fbcba2d63b..b5a9f48946a 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;