aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-08 18:01:31 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-08 18:01:31 +0000
commit86504af1491c83fe9e4f4d2b882610f4efe0c60b (patch)
treec65bb30e776b23c955ccf30551d8211eb47bb14f /tmux.h
parent1825609d8d25d38f81b497f2317f60dbb4f9ad39 (diff)
downloadrtmux-86504af1491c83fe9e4f4d2b882610f4efe0c60b.tar.gz
rtmux-86504af1491c83fe9e4f4d2b882610f4efe0c60b.tar.bz2
rtmux-86504af1491c83fe9e4f4d2b882610f4efe0c60b.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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 86f04ca4..086afc5a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.349 2009-07-02 18:17:46 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.16 2009/07/07 19:49:19 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -944,8 +944,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;