mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-22 13:45:24 +08:00
Remove another errant negation
This commit is contained in:
parent
fac8f14e07
commit
7123e2f25d
@ -167,7 +167,7 @@ wcstring event_get_desc(const parser_t &parser, const event_t &evt) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
case event_type_t::job_exit: {
|
case event_type_t::job_exit: {
|
||||||
if (job_t *j = parser.job_get_from_pid(-ed.param1.pid)) {
|
if (job_t *j = parser.job_get_from_pid(ed.param1.pid)) {
|
||||||
return format_string(_(L"exit handler for job %d, '%ls'"), j->job_id(),
|
return format_string(_(L"exit handler for job %d, '%ls'"), j->job_id(),
|
||||||
j->command_wcstr());
|
j->command_wcstr());
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user