summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/job.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2021-10-05 12:46:03 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2021-10-05 12:46:03 +0000
commit70fc3a6ba2e93c5b22f9067b8037a11240d361fe (patch)
tree94ed9e496e32bf0e4ccb3472da6e4fbdc68c8f0e /usr.bin/tmux/job.c
parentbf601a228801867438455ee8aeccc151ac13ce68 (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.c3
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)