diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-04-01 13:21:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-04-01 13:21:38 +0000 |
commit | e1273fb6a16596cea81e0c105920b88c49722505 (patch) | |
tree | f42237bd6b13a2945aaa91a2447fcb3065e3e6c1 | |
parent | 85f5485cb5e46d6d574b7a1b8c1357c85b528e2b (diff) | |
download | rtmux-e1273fb6a16596cea81e0c105920b88c49722505.tar.gz rtmux-e1273fb6a16596cea81e0c105920b88c49722505.tar.bz2 rtmux-e1273fb6a16596cea81e0c105920b88c49722505.zip |
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) |