Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion joe/ublock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,11 @@ static int dofilt(W *w, char *s, void *object, int *notify)
msgnw(bw->parent, joe_gettext(_("Couldn't create pipe")));
return -1;
}
npartial(bw->parent->t->t);
/* npartial is less jarring... */
/* npartial(bw->parent->t->t); */
/* But we must use nescape if we are using the ti te sequences, otherwise
JOE doesn't return from alternate screen if aspell is used */
nescape(bw->parent->t->t);
ttclsn();
#ifdef HAVE_FORK
if (!fork()) {
Expand Down Expand Up @@ -1275,6 +1279,8 @@ static int dofilt(W *w, char *s, void *object, int *notify)
}
vsrm(s);
ttopnn();
/* Use nreturn because we now use nescape */
nreturn(bw->parent->t->t);
if (filtflg)
unmark(bw->parent, 0);
bw->cursor->xcol = piscol(bw->cursor);
Expand Down
Loading