aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2020-04-23 17:56:45 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2020-04-23 17:56:45 +0100
commit0d3fdae7b623bd992b1fd2058e59920b2efd47da (patch)
tree514c4bd5bf24ab6617cc11157f817cd245f0fd30 /tmux.h
parentf87be8d0521436c47151233f781794dee94fc1df (diff)
downloadrtmux-0d3fdae7b623bd992b1fd2058e59920b2efd47da.tar.gz
rtmux-0d3fdae7b623bd992b1fd2058e59920b2efd47da.tar.bz2
rtmux-0d3fdae7b623bd992b1fd2058e59920b2efd47da.zip
Build list of paths and weed out duplicates before loading configs.
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 a020ac6a..f1652b68 100644
--- a/tmux.h
+++ b/tmux.h
@@ -65,7 +65,7 @@ struct winlink;
/* Client-server protocol version. */
#define PROTOCOL_VERSION 8
-/* Default configuration files. */
+/* Default configuration file. */
#ifndef TMUX_CONF
#define TMUX_CONF "/etc/tmux.conf:~/.tmux.conf"
#endif
@@ -1748,6 +1748,8 @@ const char *sig2name(int);
const char *find_cwd(void);
const char *find_home(void);
const char *getversion(void);
+void expand_paths(const char *, char ***, u_int *);
+
/* proc.c */
struct imsg;