mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 21:56:57 +00:00
The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
This commit is contained in:
@ -150,7 +150,7 @@ const struct options_table_entry session_options_table[] = {
|
|||||||
{ .name = "history-limit",
|
{ .name = "history-limit",
|
||||||
.type = OPTIONS_TABLE_NUMBER,
|
.type = OPTIONS_TABLE_NUMBER,
|
||||||
.minimum = 0,
|
.minimum = 0,
|
||||||
.maximum = SHRT_MAX,
|
.maximum = INT_MAX,
|
||||||
.default_num = 2000
|
.default_num = 2000
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user