diff options
author | nicm <nicm> | 2021-10-11 10:55:30 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-10-11 10:55:30 +0000 |
commit | 759efe1b3327a7244c03ecc7b90e0e3c49712d06 (patch) | |
tree | 58e4302cb00b591f010c38a6871b1e9a779da5a3 /format.c | |
parent | 7800a431ea63f3be4f0763df3f3a2fae44aeac58 (diff) | |
download | rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.tar.gz rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.tar.bz2 rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.zip |
Add -e flag to set environment for popup, from Alexis Hildebrandt in
GitHub issue 2924.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -390,7 +390,7 @@ format_job_get(struct format_expand_state *es, const char *cmd) if (force && fj->job != NULL) job_free(fj->job); if (force || (fj->job == NULL && fj->last != t)) { - fj->job = job_run(expanded, 0, NULL, NULL, + fj->job = job_run(expanded, 0, NULL, NULL, NULL, server_client_get_cwd(ft->client, NULL), format_job_update, format_job_complete, NULL, fj, JOB_NOWAIT, -1, -1); if (fj->job == NULL) { |