diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-07 19:49:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-07 19:49:19 +0000 |
commit | 923ccfa2e8dfddc1611213bc027fd2968a84c04b (patch) | |
tree | a50aa399eceff37bcf97d902076c1e888d357fd4 /tmux.h | |
parent | 474fdebb7abf08aecbcf00a92b7d53cd9528649c (diff) | |
download | rtmux-923ccfa2e8dfddc1611213bc027fd2968a84c04b.tar.gz rtmux-923ccfa2e8dfddc1611213bc027fd2968a84c04b.tar.bz2 rtmux-923ccfa2e8dfddc1611213bc027fd2968a84c04b.zip |
Rename the global options variables to be shorter and to make session options
clear. No functional change, getting this out of the way to make later options
changes easier.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -945,8 +945,8 @@ extern volatile sig_atomic_t sigcont; extern volatile sig_atomic_t sigchld; extern volatile sig_atomic_t sigusr1; extern volatile sig_atomic_t sigusr2; -extern struct options global_options; -extern struct options global_window_options; +extern struct options global_s_options; +extern struct options global_w_options; extern char *cfg_file; extern int server_locked; extern char *server_password; |