=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/status.c,v retrieving revision 1.134 retrieving revision 1.135 diff -u -r1.134 -r1.135 --- src/usr.bin/tmux/status.c 2015/08/29 09:25:00 1.134 +++ src/usr.bin/tmux/status.c 2015/09/14 10:25:52 1.135 @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.134 2015/08/29 09:25:00 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.135 2015/09/14 10:25:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -503,7 +503,10 @@ if (fmt == NULL) return (xstrdup("")); - ft = format_create_status(1); + if (c->flags & CLIENT_STATUSFORCE) + ft = format_create_flags(FORMAT_STATUS|FORMAT_FORCE); + else + ft = format_create_flags(FORMAT_STATUS); format_defaults(ft, c, NULL, wl, NULL); expanded = format_expand_time(ft, fmt, t);