Remove Ctrl-X from quoting

This commit is contained in:
Andrew Pamment 2017-04-29 20:48:20 +10:00
parent 4ddc76c1e9
commit 04508ec614
2 changed files with 2 additions and 2 deletions

View File

@ -20,4 +20,4 @@
--[Ctrl Q Quote Ctrl X Abort]-------------------------------------[MagiEdit2]-- --[Ctrl Q Quote ESC Abort Quoting]--------------------------------[MagiEdit2]--

View File

@ -500,7 +500,7 @@ char *message_editor() {
} }
position_x = 0; position_x = 0;
q_done = 1; q_done = 1;
} else if (ch.chKeyPress == 24 || ch.chKeyPress == 27) { } else if (ch.chKeyPress == 27) {
if (q_line_count) { if (q_line_count) {
free(q_lines); free(q_lines);
} }