aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/window.c b/window.c
index ed76e7f4..7d3b0748 100644
--- a/window.c
+++ b/window.c
@@ -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);
}