about summary refs log tree commit diff stats
path: root/src/LYKeymap.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2002-05-28 19:56:46 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2002-05-28 19:56:46 -0400
commitffc5ca31a759c93f4cb2af8aec4fe6e852161855 (patch)
tree15921cc604fd4a45252a4e0e7ec14dd7d8a46101 /src/LYKeymap.c
parent8df98234eab86f6b1027425f4b57cb6d4ca471ca (diff)
downloadlynx-snapshots-ffc5ca31a759c93f4cb2af8aec4fe6e852161855.tar.gz
snapshot of project "lynx", label v2-8-5dev_8
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 708f0e63..32af4a41 100644
--- a/src/LYKeymap.c
+++ b/src/LYKeymap.c
@@ -216,7 +216,7 @@ LYK_PREV_LINK,    LYK_NEXT_LINK,    LYK_ACTIVATE,   LYK_PREV_DOC,
 LYK_NEXT_PAGE,    LYK_PREV_PAGE,    LYK_HOME,       LYK_END,
 /* PGDOWN */      /* PGUP */        /* HOME */      /* END */
 
-#if (defined(_WINDOWS) || defined(__DJGPP__) || defined(__CYGWIN__))
+#if (defined(_WINDOWS) || defined(__DJGPP__))
 
 LYK_DWIMHELP,          0,              0,             0,
 /* F1*/
@@ -225,7 +225,7 @@ LYK_DWIMHELP,          0,              0,             0,
 LYK_DWIMHELP,     LYK_ACTIVATE,     LYK_HOME,       LYK_END,
 /* F1*/ 	  /* Do key */      /* Find key */  /* Select key */
 
-#endif /* _WINDOWS || __DJGPP__ || __CYGWIN__ */
+#endif /* _WINDOWS || __DJGPP__ */
 
 LYK_UP_TWO,       LYK_DOWN_TWO,     LYK_DO_NOTHING, LYK_FASTBACKW_LINK,
 /* Insert key */  /* Remove key */  /* DO_NOTHING*/ /* Back tab */
@@ -1174,7 +1174,7 @@ PUBLIC char *LYKeycodeToString ARGS2 (
 	else if (c >= 0400)
 	    sprintf(buf, "key-%#x", c);
 	else
-	    return 0;
+	    sprintf(buf, "%#x", c);
     }
     return buf;
 }