From c38f0d85da44d83ea69c6586a1aef428d9f489d0 Mon Sep 17 00:00:00 2001 From: sthen Date: Wed, 21 Jan 2015 12:20:56 +0000 Subject: [PATCH] In options-table.c r1.51 an extra space was added to the default status-right, overrunning status-right-length with long window titles. Allow for the extra space so the last digit of the year isn't lost. ok nicm@ --- options-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options-table.c b/options-table.c index 65b91226..7d8b2568 100644 --- a/options-table.c +++ b/options-table.c @@ -431,7 +431,7 @@ const struct options_table_entry session_options_table[] = { { .name = "status-right", .type = OPTIONS_TABLE_STRING, - .default_str = " \"#{=22:pane_title}\" %H:%M %d-%b-%y" + .default_str = " \"#{=21:pane_title}\" %H:%M %d-%b-%y" }, { .name = "status-right-attr",