aboutsummaryrefslogtreecommitdiff
path: root/src/edbox.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-12 00:48:08 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-12 00:48:08 -0400
commit8075890d4b83e7d8a9b363e131024f5f5e5361d0 (patch)
tree9e617e377d6aefe5c61a4afd9ed9c11af3a40531 /src/edbox.c
parent1d7cac2297c8c52777ee47b52571e8277b372c85 (diff)
downloadfujinet-chat-8075890d4b83e7d8a9b363e131024f5f5e5361d0.tar.gz
fix start+letters in screen 2, filter out ctrl+atari keystrokes correctly.
Diffstat (limited to 'src/edbox.c')
-rw-r--r--src/edbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edbox.c b/src/edbox.c
index efbd19d..7c9715d 100644
--- a/src/edbox.c
+++ b/src/edbox.c
@@ -168,7 +168,7 @@ void edbox_keystroke(void) {
case 0xbc: /* ctrl-caps */
case 0x27: /* atari key */
case 0x67: /* ...w/shift */
- case 0x97: /* ...w/ctrl */
+ case 0xa7: /* ...w/ctrl */
case 0x9a: /* ctrl-3 (crash if cgetc() reads it!) */
OS.ch = 0xff; /* ignore it! */
return;