From db3a495ec01035d21b6a8891c2c9b82a55a6e6b3 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 15 Dec 2000 14:33:39 +0000 Subject: [PATCH] (operator_name): Cast argument of isalpha to unsigned char. --- lib-src/ebrowse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2