Revert "Add a B flag to mark windows bigger than the client."

This reverts commit b4e74f4310.
This commit is contained in:
Nicholas Marriott
2018-09-26 16:42:29 +01:00
parent 6abb62df1e
commit 04c6db2d0f
5 changed files with 8 additions and 11 deletions

View File

@ -739,7 +739,7 @@ window_destroy_panes(struct window *w)
}
const char *
window_printable_flags(struct winlink *wl, struct client *c)
window_printable_flags(struct winlink *wl)
{
struct session *s = wl->session;
static char flags[32];
@ -760,8 +760,6 @@ window_printable_flags(struct winlink *wl, struct client *c)
flags[pos++] = 'M';
if (wl->window->flags & WINDOW_ZOOMED)
flags[pos++] = 'Z';
if (c != NULL && tty_window_bigger(&c->tty, wl->window))
flags[pos++] = '+';
flags[pos] = '\0';
return (flags);
}