diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-04-10 09:53:14 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-04-10 09:53:14 +0000 |
commit | 36ece3fcf5dc892b435c9cead8b2e408051745e8 (patch) | |
tree | 5b9754ac2caa4bc935e52e9e611d95b7392dc819 | |
parent | f99de22808b8e3c2b8aabf70b945f768ae892dda (diff) | |
download | rtmux-36ece3fcf5dc892b435c9cead8b2e408051745e8.tar.gz rtmux-36ece3fcf5dc892b435c9cead8b2e408051745e8.tar.bz2 rtmux-36ece3fcf5dc892b435c9cead8b2e408051745e8.zip |
Sync OpenBSD patchset 1085:
Fix option name.
-rw-r--r-- | layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -772,7 +772,7 @@ layout_list_add(struct window *w) w->layout_list_size++; w->layout_list_last = ll; - limit = options_get_number(&w->options, "layout-history"); + limit = options_get_number(&w->options, "layout-history-limit"); while (w->layout_list_size > limit) { ll = TAILQ_LAST(&w->layout_list, last_layouts); if (ll == w->layout_list_last) |