Correct a negated pgid

When printing the description of an event, there was an errant negation
from when fish stored the pgid negated. Remove it.
This commit is contained in:
ridiculousfish 2021-05-20 11:07:36 -07:00
parent 504a969a24
commit fac8f14e07

View File

@ -172,7 +172,7 @@ wcstring event_get_desc(const parser_t &parser, const event_t &evt) {
j->command_wcstr());
} else {
return format_string(_(L"exit handler for job with process group %d"),
-ed.param1.pgid);
ed.param1.pgid);
}
}