mirror of
https://github.com/tmux/tmux.git
synced 2025-01-14 20:58:53 +00:00
The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
This commit is contained in:
parent
fa4a75cdab
commit
9ad9e8c5dd
@ -150,7 +150,7 @@ const struct options_table_entry session_options_table[] = {
|
||||
{ .name = "history-limit",
|
||||
.type = OPTIONS_TABLE_NUMBER,
|
||||
.minimum = 0,
|
||||
.maximum = SHRT_MAX,
|
||||
.maximum = INT_MAX,
|
||||
.default_num = 2000
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user