Skip to content
Snippets Groups Projects
Commit 38831704 authored by rswindell's avatar rswindell
Browse files

handle_ctrlkey() will no longer ignore Ctrl-J (LF) to fix pause modules that

use inkey()/ungetkey() and don't work with down-arrow (ctrl-J). This should
be okay now that input_thread auto-converts Telnet's CR/LF to CR.
parent a0c38f18
No related branches found
No related tags found
No related merge requests found
......@@ -127,8 +127,10 @@ char sbbs_t::handle_ctrlkey(char ch, long mode)
if(console&CON_RAW_IN) /* ignore ctrl-key commands if in raw mode */
return(ch);
#if 0 /* experimental removal to fix Tracker1's pause module problem with down-arrow */
if(ch==LF) /* ignore LF's if not in raw mode */
return(0);
#endif
/* Global hot key event */
for(i=0;i<cfg.total_hotkeys;i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment