diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-10-05 12:46:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-10-05 12:46:03 +0000 |
commit | 70fc3a6ba2e93c5b22f9067b8037a11240d361fe (patch) | |
tree | 94ed9e496e32bf0e4ccb3472da6e4fbdc68c8f0e /usr.bin/tmux/job.c | |
parent | bf601a228801867438455ee8aeccc151ac13ce68 (diff) |
Separate "very visible" flag from blinking flag, it should not affect
DECSCUSR. GitHub issue 2891.
Diffstat (limited to 'usr.bin/tmux/job.c')
-rw-r--r-- | usr.bin/tmux/job.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/job.c b/usr.bin/tmux/job.c index df0774240ac..314776f873b 100644 --- a/usr.bin/tmux/job.c +++ b/usr.bin/tmux/job.c @@ -1,4 +1,4 @@ -/* $OpenBSD: job.c,v 1.62 2021/08/13 19:55:11 nicm Exp $ */ +/* $OpenBSD: job.c,v 1.63 2021/10/05 12:46:02 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -339,6 +339,7 @@ job_check_died(pid_t pid, int status) log_debug("job died %p: %s, pid %ld", job, job->cmd, (long) job->pid); job->status = status; + log_debug("job %p status %d", job, job->status); if (job->state == JOB_CLOSED) { if (job->completecb != NULL) |