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

Disabled Ctrl-C checking in incom() - redundant.

parent c50b6bc3
No related branches found
No related tags found
No related merge requests found
......@@ -2604,11 +2604,11 @@ int sbbs_t::incom(void)
if(!RingBufRead(&inbuf, &ch, 1))
return(NOINP);
#if 0 // removed Jan-2003
if(!(cfg.ctrlkey_passthru&(1<<CTRL_C))
&& rio_abortable && ch==CTRL_C)
return(NOINP); /* this should never happen since input_thread eats Ctrl-C chars */
#endif
return(ch);
}
......
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