about summary refs log tree commit diff stats
path: root/src/LYKeymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/LYKeymap.c')
-rw-r--r--src/LYKeymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LYKeymap.c b/src/LYKeymap.c
index 5c144c2a..73f6c0a0 100644
--- a/src/LYKeymap.c
+++ b/src/LYKeymap.c
@@ -1,4 +1,4 @@
-/* $LynxId: LYKeymap.c,v 1.108 2013/10/20 22:26:42 tom Exp $ */
+/* $LynxId: LYKeymap.c,v 1.109 2013/11/28 11:19:31 tom Exp $ */
 #include <HTUtils.h>
 #include <LYUtils.h>
 #include <LYGlobalDefs.h>
@@ -1361,7 +1361,7 @@ BOOLEAN LYisNonAlnumKeyname(int ch,
 
     if (ch >= 0 && (ch + 1) < KEYMAP_SIZE) {
 	if ((ch <= 0
-	     || strchr("0123456789"
+	     || StrChr("0123456789"
 		       "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 		       "abcdefghijklmnopqrstuvwxyz", ch) == NULL)
 	    && (keymap[ch + 1] == KeyName)) {
@@ -1484,7 +1484,7 @@ static void checkKeyMap(LYEditConfig * table)
 
 		    if (non_empty(what)) {
 			sprintf(comment, "\t/* %s%s */", what,
-				((strchr(what, '_') != 0)
+				((StrChr(what, '_') != 0)
 				 ? ""
 				 : "_KEY"));
 		    } else {