Skip to content
Snippets Groups Projects
Commit c8fb79da authored by deuce's avatar deuce
Browse files

Pass CTRL-x through as the respective ATASCII graphics characters.

Requested by Jeffrey S. Worley.

Note: There's still no way to send ◢, ▗, ◣, and 🮂 as these are mapped
to Backspace, Tab, Line Feed, and Carriage Return respectively.
parent f918c402
No related branches found
No related tags found
No related merge requests found
......@@ -2923,10 +2923,7 @@ BOOL doterm(struct bbslist *bbs)
default:
if(key<256) {
/* ASCII Translation */
if(key<32) {
break;
}
else if(key<123) {
if(key<123) {
ch[0]=key;
conn_send(ch,1,0);
}
......
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