aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2021-10-11 14:01:13 +0100
committerThomas Adam <thomas@xteddy.org>2021-10-11 14:01:13 +0100
commitaf82106fae823f55fd3c746e1b48bc8e52a55e68 (patch)
tree2189aea822dbccb9d70837e6d088cd79c821e664 /tmux.h
parent7ca863c5af3dbbb78d45bec5b113a69f983f2fdc (diff)
parent759efe1b3327a7244c03ecc7b90e0e3c49712d06 (diff)
downloadrtmux-af82106fae823f55fd3c746e1b48bc8e52a55e68.tar.gz
rtmux-af82106fae823f55fd3c746e1b48bc8e52a55e68.tar.bz2
rtmux-af82106fae823f55fd3c746e1b48bc8e52a55e68.zip
Merge branch 'obsd-master' into master
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 1e5722db..732d7c60 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2074,9 +2074,9 @@ typedef void (*job_free_cb) (void *);
#define JOB_NOWAIT 0x1
#define JOB_KEEPWRITE 0x2
#define JOB_PTY 0x4
-struct job *job_run(const char *, int, char **, struct session *,
- const char *, job_update_cb, job_complete_cb, job_free_cb,
- void *, int, int, int);
+struct job *job_run(const char *, int, char **, struct environ *,
+ struct session *, const char *, job_update_cb,
+ job_complete_cb, job_free_cb, void *, int, int, int);
void job_free(struct job *);
int job_transfer(struct job *, pid_t *, char *, size_t);
void job_resize(struct job *, u_int, u_int);
@@ -3107,8 +3107,9 @@ int menu_key_cb(struct client *, void *, struct key_event *);
typedef void (*popup_close_cb)(int, void *);
typedef void (*popup_finish_edit_cb)(char *, size_t, void *);
int popup_display(int, struct cmdq_item *, u_int, u_int, u_int,
- u_int, const char *, int, char **, const char *,
- struct client *, struct session *, popup_close_cb, void *);
+ u_int, struct environ *, const char *, int, char **,
+ const char *, struct client *, struct session *,
+ popup_close_cb, void *);
int popup_editor(struct client *, const char *, size_t,
popup_finish_edit_cb, void *);