From 7997fd315279a15e86cc1ee2649e74603007bb1b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 4 Oct 2024 18:59:53 +0100 Subject: [PATCH] Missing define. --- tmux.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tmux.h b/tmux.h index 0b14ccd0..071d9d29 100644 --- a/tmux.h +++ b/tmux.h @@ -2341,6 +2341,7 @@ typedef void (*job_free_cb) (void *); #define JOB_NOWAIT 0x1 #define JOB_KEEPWRITE 0x2 #define JOB_PTY 0x4 +#define JOB_DEFAULTSHELL 0x8 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);