diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-12-15 02:01:14 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-12-15 02:01:14 +0000 |
commit | 1a33ea9671895258cee37cf89a209e56ecf578fb (patch) | |
tree | 73ab6a6db7131c90bfeba60813423bbe316b31da /window.c | |
parent | 6ab17e3e15f8cbaf12fa3a9ea038a4e65f19ba85 (diff) | |
parent | 9d88d82d5e8caa7882a28ac95fda19754e5553e7 (diff) | |
download | rtmux-1a33ea9671895258cee37cf89a209e56ecf578fb.tar.gz rtmux-1a33ea9671895258cee37cf89a209e56ecf578fb.tar.bz2 rtmux-1a33ea9671895258cee37cf89a209e56ecf578fb.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -567,7 +567,7 @@ window_add_pane(struct window *w, u_int hlimit) void window_lost_pane(struct window *w, struct window_pane *wp) { - if (wp == marked_window_pane) + if (wp == marked_pane.wp) server_clear_marked(); if (wp == w->active) { @@ -690,7 +690,7 @@ window_printable_flags(struct session *s, struct winlink *wl) flags[pos++] = '*'; if (wl == TAILQ_FIRST(&s->lastw)) flags[pos++] = '-'; - if (server_check_marked() && wl == marked_winlink) + if (server_check_marked() && wl == marked_pane.wl) flags[pos++] = 'M'; if (wl->window->flags & WINDOW_ZOOMED) flags[pos++] = 'Z'; |