diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-01-13 13:38:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-01-13 13:38:58 +0000 |
commit | 352ec5378af29661e55729ff05d8b5cc50274936 (patch) | |
tree | 9c29bf66eef1ad4ddf1fa8250683408085d17593 /usr.bin | |
parent | 4be209a170cf4bf12bce9e3ff24755e0a27c336f (diff) |
The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
Diffstat (limited to 'usr.bin')
-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 423f0073f22..bf8e0cf8d69 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.2 2011/01/03 23:35:21 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.3 2011/01/13 13:38:57 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 }, |