summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-05-20 13:23:32 +0000
committernicm <nicm>2019-05-20 13:23:32 +0000
commit87d82170a615007bbd2f880765f222dd5c263000 (patch)
tree935f6df272d7c14f5063600011c11a6a16a337eb /tmux.h
parente128c7fcd8441f3fa885eafc9328f0937cc7384c (diff)
Fix ordering of source-file with multiple files and add flags to load_cfg.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index c87c797c..2979a6e3 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1671,8 +1671,10 @@ void proc_toggle_log(struct tmuxproc *);
/* cfg.c */
extern int cfg_finished;
extern struct client *cfg_client;
+#define CFG_QUIET 0x1
void start_cfg(void);
-int load_cfg(const char *, struct client *, struct cmdq_item *, int);
+int load_cfg(const char *, struct client *, struct cmdq_item *, int,
+ struct cmdq_item **);
void set_cfg_file(const char *);
void printflike(1, 2) cfg_add_cause(const char *, ...);
void cfg_print_causes(struct cmdq_item *);