mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 03:54:04 +08:00
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:
parent
504a969a24
commit
fac8f14e07
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user