diff options
author | 2017-02-06 19:26:49 +0000 | |
---|---|---|
committer | 2017-02-06 19:26:49 +0000 | |
commit | 92483283bc7212bccd4867298677527ebc7ac0d2 (patch) | |
tree | 82741c29fa651ff1044cc74f0de49d6c1c52eaaf /usr.bin/tmux/tmux.h | |
parent | Move cache and tlb flush functions, which were mostly inline assembly, (diff) | |
download | wireguard-openbsd-92483283bc7212bccd4867298677527ebc7ac0d2.tar.xz wireguard-openbsd-92483283bc7212bccd4867298677527ebc7ac0d2.zip |
Add BCE for clear to start of screen, which was somehow missed.
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 dfbafbb01a4..038dfa568d8 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.714 2017/02/06 15:00:41 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.715 2017/02/06 19:26:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1992,7 +1992,7 @@ void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int); void screen_write_linefeed(struct screen_write_ctx *, int); void screen_write_carriagereturn(struct screen_write_ctx *); void screen_write_clearendofscreen(struct screen_write_ctx *, u_int); -void screen_write_clearstartofscreen(struct screen_write_ctx *); +void screen_write_clearstartofscreen(struct screen_write_ctx *, u_int); void screen_write_clearscreen(struct screen_write_ctx *, u_int); void screen_write_clearhistory(struct screen_write_ctx *); void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *); |