Sync OpenBSD patchset 813:

Add a function to create window flags rather than doing the same thing
in two places. From Thomas Adam.
This commit is contained in:
Tiago Cunha
2011-01-07 16:55:40 +00:00
parent 1cb579d0fd
commit 30f6d9b167
4 changed files with 40 additions and 36 deletions

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.602 2011-01-07 14:45:34 tcunha Exp $ */
/* $Id: tmux.h,v 1.603 2011-01-07 16:55:40 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1873,6 +1873,8 @@ void window_pane_mouse(struct window_pane *,
int window_pane_visible(struct window_pane *);
char *window_pane_search(
struct window_pane *, const char *, u_int *);
char *window_printable_flags(struct session *, struct winlink *);
struct window_pane *window_pane_find_up(struct window_pane *);
struct window_pane *window_pane_find_down(struct window_pane *);
struct window_pane *window_pane_find_left(struct window_pane *);