diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-07 19:49:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-07 19:49:20 +0000 |
commit | 636728068cd05bf10a07b9d593f55990c458a6e9 (patch) | |
tree | 3a57ec7124dd030e1a314d58abd6b85685d3285f /usr.bin/tmux/window.c | |
parent | 540531a12acafaaf1a8bb16ed85a6f3487f89908 (diff) |
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 'usr.bin/tmux/window.c')
-rw-r--r-- | usr.bin/tmux/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/window.c b/usr.bin/tmux/window.c index 98926724b83..dbd9915558b 100644 --- a/usr.bin/tmux/window.c +++ b/usr.bin/tmux/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.6 2009/06/25 06:15:04 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.7 2009/07/07 19:49:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -204,7 +204,7 @@ window_create1(u_int sx, u_int sy) w->sx = sx; w->sy = sy; - options_init(&w->options, &global_window_options); + options_init(&w->options, &global_w_options); for (i = 0; i < ARRAY_LENGTH(&windows); i++) { if (ARRAY_ITEM(&windows, i) == NULL) { |