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 /cmd-set-window-option.c | |
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 'cmd-set-window-option.c')
-rw-r--r-- | cmd-set-window-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-set-window-option.c b/cmd-set-window-option.c index cc9bf963..99b1a907 100644 --- a/cmd-set-window-option.c +++ b/cmd-set-window-option.c @@ -82,7 +82,7 @@ cmd_set_window_option_exec(struct cmd *self, struct cmd_ctx *ctx) u_int i; if (data->flags & CMD_GFLAG) - oo = &global_window_options; + oo = &global_w_options; else { if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL) return (-1); |