diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-01-05 09:07:17 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-01-05 09:07:17 +0000 |
commit | 7a6b3c7a8669e3477c88daef0ff9fa5f81fd3a9e (patch) | |
tree | c3d2a2c871f799407a647028eb29041b083ae415 /usr.bin/tmux/tmux.h | |
parent | 5c0d4ed39137bfb56c845186e5152aed707cf731 (diff) |
Highlight all occurrences of search string after searching in copy mode.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 50462d879be..61f50719edd 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.682 2016/12/28 10:34:34 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.683 2017/01/05 09:07:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2011,7 +2011,7 @@ void screen_write_vnputs(struct screen_write_ctx *, ssize_t, void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *, u_char); void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int, - u_int, u_int, u_int); + u_int, u_int, u_int, bitstr_t *, const struct grid_cell *); void screen_write_backspace(struct screen_write_ctx *); void screen_write_mode_set(struct screen_write_ctx *, int); void screen_write_mode_clear(struct screen_write_ctx *, int); |