aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-15 14:33:39 +0000
committerGerd Moellmann2000-12-15 14:33:39 +0000
commitdb3a495ec01035d21b6a8891c2c9b82a55a6e6b3 (patch)
tree6608e3ae87e90f65598b678d2bc7cd454bd9d52b /lib-src
parent859cbb401c0f233886ac8f13a1bb2ab7bf09f0a8 (diff)
downloademacs-db3a495ec01035d21b6a8891c2c9b82a55a6e6b3.tar.gz
emacs-db3a495ec01035d21b6a8891c2c9b82a55a6e6b3.zip
(operator_name): Cast argument of isalpha to
unsigned char.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ebrowse.c2
1 files changed, 1 insertions, 1 deletions
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)
2867 MATCH (); 2867 MATCH ();
2868 2868
2869 /* If this is a simple operator like `+', stop now. */ 2869 /* If this is a simple operator like `+', stop now. */
2870 if (!isalpha (*s) && *s != '(' && *s != '[') 2870 if (!isalpha ((unsigned char) *s) && *s != '(' && *s != '[')
2871 break; 2871 break;
2872 2872
2873 ++tokens_matched; 2873 ++tokens_matched;