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

Fixed typo in last commit (missing colon).

parent 12ad773a
No related branches found
No related tags found
No related merge requests found
......@@ -284,7 +284,7 @@ char sbbs_t::handle_ctrlkey(char ch, long mode)
return(0x1d); /* ctrl-] (lf arrow) */
case 'H': /* ANSI: home cursor */
return(CTRL_B); /* ctrl-b (beg line) */
case 'F' /* Xterm: cursor preceding line */
case 'F': /* Xterm: cursor preceding line */
case 'K': /* ANSI: clear-to-end-of-line */
return(CTRL_E); /* ctrl-e (end line) */
}
......
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