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

Handle abort (Ctrl-C or 'N') during a initial email listing more gracefully:

start at the first message, don't display message automatically.
parent 51bb36a5
No related branches found
No related tags found
No related merge requests found
...@@ -155,7 +155,10 @@ void sbbs_t::readmail(uint usernumber, int which) ...@@ -155,7 +155,10 @@ void sbbs_t::readmail(uint usernumber, int which)
} }
ASYNC; ASYNC;
if(!(sys_status&SS_ABORT)) { if(sys_status&SS_ABORT) {
domsg=0;
smb.curmsg=0;
} else {
bprintf(text[StartWithN],1L); bprintf(text[StartWithN],1L);
l=getnum(smb.msgs); l=getnum(smb.msgs);
if(l>0) if(l>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