diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-08 18:01:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-08 18:01:31 +0000 |
commit | 86504af1491c83fe9e4f4d2b882610f4efe0c60b (patch) | |
tree | c65bb30e776b23c955ccf30551d8211eb47bb14f /window.c | |
parent | 1825609d8d25d38f81b497f2317f60dbb4f9ad39 (diff) | |
download | rtmux-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 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.87 2009-07-02 18:17:46 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> @@ -220,7 +220,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) { |