diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2000-10-25 18:35:30 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2000-10-25 18:35:30 -0400 |
commit | 5b28849589e7577a222685852b8601a1e7568726 (patch) | |
tree | cce74bbe5bf3c32f82c79a94c22eb29ca458c6ee /src/LYKeymap.c | |
parent | c16270eee5ad3c6a3b992a9684ff8bd60e60de96 (diff) | |
download | lynx-snapshots-5b28849589e7577a222685852b8601a1e7568726.tar.gz |
snapshot of project "lynx", label v2-8-4dev_12
Diffstat (limited to 'src/LYKeymap.c')
-rw-r--r-- | src/LYKeymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LYKeymap.c b/src/LYKeymap.c index b36d0ebf..3eb5cd9a 100644 --- a/src/LYKeymap.c +++ b/src/LYKeymap.c @@ -1341,7 +1341,7 @@ PUBLIC int lkcstring_to_lkc ARGS1( c = *src; else if (strlen(src) == 2 && *src == '^') c = src[1] & 037; - else if (strlen(src) >= 2 && isdigit(*src)) { + else if (strlen(src) >= 2 && isdigit(UCH(*src))) { if (sscanf(src, "%i", &c) != 1) return (-1); #ifdef USE_KEYMAPS |