aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-05-12 14:01:17 +0100
committerThomas Adam <thomas@xteddy.org>2017-05-12 14:01:17 +0100
commit7f813dcb6a71b69c06b51a9f28a5319785504e9a (patch)
treeed6d26c9c8608180361fb22ec56f7114419675bb /tmux.h
parent1cdc4568bd1e5feebaa4b3b9c9611ef406b39a21 (diff)
parent60f7b05c0c9fbee371dac86229d888aed7b0e7f6 (diff)
downloadrtmux-7f813dcb6a71b69c06b51a9f28a5319785504e9a.tar.gz
rtmux-7f813dcb6a71b69c06b51a9f28a5319785504e9a.tar.bz2
rtmux-7f813dcb6a71b69c06b51a9f28a5319785504e9a.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 07d6fef0..ee8785c9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -796,6 +796,7 @@ struct window_pane {
struct event modetimer;
time_t modelast;
u_int modeprefix;
+ char *searchstr;
TAILQ_ENTRY(window_pane) entry;
RB_ENTRY(window_pane) tree_entry;
@@ -2000,7 +2001,7 @@ void screen_write_cursorleft(struct screen_write_ctx *, u_int);
void screen_write_alignmenttest(struct screen_write_ctx *);
void screen_write_insertcharacter(struct screen_write_ctx *, u_int, u_int);
void screen_write_deletecharacter(struct screen_write_ctx *, u_int, u_int);
-void screen_write_clearcharacter(struct screen_write_ctx *, u_int);
+void screen_write_clearcharacter(struct screen_write_ctx *, u_int, u_int);
void screen_write_insertline(struct screen_write_ctx *, u_int, u_int);
void screen_write_deleteline(struct screen_write_ctx *, u_int, u_int);
void screen_write_clearline(struct screen_write_ctx *, u_int);
@@ -2181,7 +2182,6 @@ void window_copy_vadd(struct window_pane *, const char *, va_list);
void window_copy_pageup(struct window_pane *, int);
void window_copy_start_drag(struct client *, struct mouse_event *);
int window_copy_scroll_position(struct window_pane *);
-const char *window_copy_search_string(struct window_pane *);
/* window-choose.c */
extern const struct window_mode window_choose_mode;