=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.1100 retrieving revision 1.1101 diff -c -r1.1100 -r1.1101 *** src/usr.bin/tmux/tmux.h 2021/03/16 09:14:58 1.1100 --- src/usr.bin/tmux/tmux.h 2021/04/05 08:43:48 1.1101 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.1100 2021/03/16 09:14:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.1101 2021/04/05 08:43:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 2583,2589 **** u_int grid_reader_line_length(struct grid_reader *); int grid_reader_in_set(struct grid_reader *, const char *); void grid_reader_cursor_right(struct grid_reader *, int, int); ! void grid_reader_cursor_left(struct grid_reader *); void grid_reader_cursor_down(struct grid_reader *); void grid_reader_cursor_up(struct grid_reader *); void grid_reader_cursor_start_of_line(struct grid_reader *, int); --- 2583,2589 ---- u_int grid_reader_line_length(struct grid_reader *); int grid_reader_in_set(struct grid_reader *, const char *); void grid_reader_cursor_right(struct grid_reader *, int, int); ! void grid_reader_cursor_left(struct grid_reader *, int); void grid_reader_cursor_down(struct grid_reader *); void grid_reader_cursor_up(struct grid_reader *); void grid_reader_cursor_start_of_line(struct grid_reader *, int); *************** *** 2596,2601 **** --- 2596,2602 ---- const struct utf8_data *); int grid_reader_cursor_jump_back(struct grid_reader *, const struct utf8_data *); + void grid_reader_cursor_back_to_indentation(struct grid_reader *); /* grid-view.c */ void grid_view_get_cell(struct grid *, u_int, u_int, struct grid_cell *);