diff options
author | Thomas Adam <thomas@xteddy.org> | 2013-01-17 01:38:21 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2013-01-17 01:38:21 +0000 |
commit | de194016ec345db2a2a3e0b0d69080e288623597 (patch) | |
tree | 8222c9caa50815342d4ed66f2291c8b986926609 /options-table.c | |
parent | 675c6b37734a622b4530d35505f897310fdb138c (diff) | |
parent | e33ba57c13139bc9ae6e92be169de6dc322e38eb (diff) | |
download | rtmux-de194016ec345db2a2a3e0b0d69080e288623597.tar.gz rtmux-de194016ec345db2a2a3e0b0d69080e288623597.tar.bz2 rtmux-de194016ec345db2a2a3e0b0d69080e288623597.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/options-table.c b/options-table.c index 4d1edbd5..83ec97f2 100644 --- a/options-table.c +++ b/options-table.c @@ -90,6 +90,13 @@ const struct options_table_entry server_options_table[] = { /* Session options. */ const struct options_table_entry session_options_table[] = { + { .name = "assume-paste-time", + .type = OPTIONS_TABLE_NUMBER, + .minimum = 0, + .maximum = INT_MAX, + .default_num = 1, + }, + { .name = "base-index", .type = OPTIONS_TABLE_NUMBER, .minimum = 0, @@ -509,13 +516,6 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, - { .name = "layout-history-limit", - .type = OPTIONS_TABLE_NUMBER, - .minimum = 1, - .maximum = USHRT_MAX, - .default_num = 20 - }, - { .name = "main-pane-height", .type = OPTIONS_TABLE_NUMBER, .minimum = 1, |