diff options
author | 2017-05-12 10:50:11 +0000 | |
---|---|---|
committer | 2017-05-12 10:50:11 +0000 | |
commit | cf8e7221d6b58e0ed89c151715575da87d707bb7 (patch) | |
tree | 3a0d0080ac31b5229403ca18eadadad259e7c6af /usr.bin/tmux/tmux.h | |
parent | Can use DECFRA to clear area when not using default background. (diff) | |
download | wireguard-openbsd-cf8e7221d6b58e0ed89c151715575da87d707bb7.tar.xz wireguard-openbsd-cf8e7221d6b58e0ed89c151715575da87d707bb7.zip |
ECH needs to use background colour.
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 1adede81a3f..60d402e60c1 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.765 2017/05/12 10:45:38 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.766 2017/05/12 10:50:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1997,7 +1997,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); |