diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-23 01:44:29 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-23 01:44:35 -0400 |
| commit | 22bd5a4cfface7fc6f85a8e5b1bf392a23023f1f (patch) | |
| tree | edda73a9a953ce06436a032d952c1467739e7b84 | |
| parent | 91cf3d45d2282e4281f1301db5e1d31209885d2b (diff) | |
| download | fujinet-chat-22bd5a4cfface7fc6f85a8e5b1bf392a23023f1f.tar.gz | |
Only delay after normal (non-Start) keystrokes.
| -rw-r--r-- | src/irc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1037,8 +1037,8 @@ static void keystroke(void) { start_keystroke(); } else { edbox_keystroke(); + OS.cdtmv3 = hz / 2; } - OS.cdtmv3 = hz / 2; } /* only exits on error (e.g. connection closed, which might be via /QUIT). */ @@ -1059,6 +1059,7 @@ void irc_loop(void) { if(!irc_read() || !service_minute_timer()) { return; } + OS.cdtmv3 = 0; do { keystroke(); } while(OS.cdtmv3); |
