mirror of
https://github.com/tmux/tmux.git
synced 2025-01-05 23:38:48 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
a00cdcdfcb
3
format.c
3
format.c
@ -297,7 +297,8 @@ format_job_get(struct format_tree *ft, const char *cmd)
|
|||||||
|
|
||||||
t = time(NULL);
|
t = time(NULL);
|
||||||
if (fj->job == NULL && (force || fj->last != t)) {
|
if (fj->job == NULL && (force || fj->last != t)) {
|
||||||
fj->job = job_run(expanded, NULL, NULL, format_job_update,
|
fj->job = job_run(expanded, NULL,
|
||||||
|
server_client_get_cwd(ft->client, NULL), format_job_update,
|
||||||
format_job_complete, NULL, fj, JOB_NOWAIT);
|
format_job_complete, NULL, fj, JOB_NOWAIT);
|
||||||
if (fj->job == NULL) {
|
if (fj->job == NULL) {
|
||||||
free(fj->out);
|
free(fj->out);
|
||||||
|
1
job.c
1
job.c
@ -79,6 +79,7 @@ job_run(const char *cmd, struct session *s, const char *cwd,
|
|||||||
|
|
||||||
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
|
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
|
||||||
return (NULL);
|
return (NULL);
|
||||||
|
log_debug("%s: cmd=%s, cwd=%s", __func__, cmd, cwd);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Do not set TERM during .tmux.conf, it is nice to be able to use
|
* Do not set TERM during .tmux.conf, it is nice to be able to use
|
||||||
|
Loading…
Reference in New Issue
Block a user