=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.910 retrieving revision 1.911 diff -u -r1.910 -r1.911 --- src/usr.bin/tmux/tmux.h 2019/06/07 20:09:17 1.910 +++ src/usr.bin/tmux/tmux.h 2019/06/13 19:46:00 1.911 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.910 2019/06/07 20:09:17 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.911 2019/06/13 19:46:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -2396,7 +2396,8 @@ struct session *, struct winlink *, key_code, struct mouse_event *); int window_pane_visible(struct window_pane *); -u_int window_pane_search(struct window_pane *, const char *); +u_int window_pane_search(struct window_pane *, const char *, int, + int); const char *window_printable_flags(struct winlink *); struct window_pane *window_pane_find_up(struct window_pane *); struct window_pane *window_pane_find_down(struct window_pane *); @@ -2630,5 +2631,8 @@ /* spawn.c */ struct winlink *spawn_window(struct spawn_context *, char **); struct window_pane *spawn_pane(struct spawn_context *, char **); + +/* regsub.c */ +char *regsub(const char *, const char *, const char *, int); #endif /* TMUX_H */