Merge branch 'obsd-master'

pull/2195/head
Thomas Adam 2020-04-18 16:01:34 +01:00
commit 2ccf15e5d8
2 changed files with 3 additions and 3 deletions

View File

@ -954,7 +954,7 @@ format_cb_cursor_character(struct format_tree *ft, struct format_entry *fe)
char *
format_grid_word(struct grid *gd, u_int x, u_int y)
{
struct grid_line *gl;
const struct grid_line *gl;
struct grid_cell gc;
const char *ws;
struct utf8_data *ud = NULL;

4
tmux.h
View File

@ -936,8 +936,8 @@ struct window_pane {
char *searchstr;
int searchregex;
u_int written;
u_int skipped;
size_t written;
size_t skipped;
TAILQ_ENTRY(window_pane) entry;
RB_ENTRY(window_pane) tree_entry;