drop signals at the end of reset_term_attributes() #1872

pull/1876/head
nick black 3 years ago
parent 205a8bd764
commit 588f8d3789
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -53,7 +53,7 @@ int reset_term_attributes(const tinfo* ti, FILE* fp){
static int
notcurses_stop_minimal(void* vnc){
notcurses* nc = vnc;
int ret = drop_signals(nc);
int ret = 0;
// be sure to write the restoration sequences *prior* to running rmcup, as
// they apply to the screen (alternate or otherwise) we're actually using.
const char* esc;
@ -86,6 +86,9 @@ notcurses_stop_minimal(void* vnc){
if(ncflush(nc->ttyfp)){
ret = -1;
}
// see #1872; without keeping this at the end, we run into mysterious,
// poorly-understood issues during shutdown =[. cowardly. FIXME
ret |= drop_signals(nc);
return ret;
}

Loading…
Cancel
Save