Skip to content
Snippets Groups Projects
Commit b4d19463 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Hitting Ctrl-C and Pot to or subject prompt now aborts

parent a1a648ff
No related branches found
No related tags found
No related merge requests found
......@@ -67,11 +67,11 @@ console.print(format(bbs.text("Posting"), sub.grp_name, sub.description));
var hdr = { from_ext: user.number, from: sub.settings & SUB_NAME ? user.name : user.alias };
console.print(bbs.text("PostTo"));
hdr.to = console.getstr("All", LEN_ALIAS, K_EDIT | K_LINE | K_AUTODEL);
if (!hdr.to)
if (console.aborted || !hdr.to)
exit(0);
console.print(bbs.text("SubjectPrompt"));
hdr.subject = console.getstr(text, LEN_TITLE, K_EDIT | K_LINE)
if (!hdr.subject)
if (console.aborted || !hdr.subject)
exit(0);
console.putmsg(bbs.text("Saving"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment