diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-06-26 13:03:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-06-26 13:03:48 +0000 |
commit | 065ad3e0793f02f37626774b5e89c534a6a32389 (patch) | |
tree | a75ece5c281cbcb6a148a602308ec9c8af8dd233 /usr.bin/tmux/options-table.c | |
parent | f7d2daaffd87276289544946ef5af234ac63cada (diff) |
Add #define for the pane status line option position numbers.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 2c004481a27..bcc4c2a7487 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.108 2019/06/20 13:40:22 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.109 2019/06/26 13:03:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -689,7 +689,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_WINDOW, .choices = options_table_pane_status_list, - .default_num = 0 + .default_num = PANE_STATUS_OFF }, { .name = "pane-border-style", |