diff options
author | 2019-03-12 20:02:47 +0000 | |
---|---|---|
committer | 2019-03-12 20:02:47 +0000 | |
commit | 5c6c700103c5461c5f4d0a54e30035403322337f (patch) | |
tree | 3d652cb86aa643d80416cb9bdf4921305185c048 /usr.bin/tmux/tmux.h | |
parent | fix line break (diff) | |
download | wireguard-openbsd-5c6c700103c5461c5f4d0a54e30035403322337f.tar.xz wireguard-openbsd-5c6c700103c5461c5f4d0a54e30035403322337f.zip |
DECRC and DECSC apparently need to preserve origin mode as well, based
on a fix from Marc Reisner.
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 dbd67314b37..eb1490aace8 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.860 2019/03/12 18:30:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.861 2019/03/12 20:02:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2100,7 +2100,7 @@ void screen_write_deleteline(struct screen_write_ctx *, u_int, u_int); void screen_write_clearline(struct screen_write_ctx *, u_int); void screen_write_clearendofline(struct screen_write_ctx *, u_int); void screen_write_clearstartofline(struct screen_write_ctx *, u_int); -void screen_write_cursormove(struct screen_write_ctx *, int, int); +void screen_write_cursormove(struct screen_write_ctx *, int, int, int); void screen_write_reverseindex(struct screen_write_ctx *, u_int); void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int); void screen_write_linefeed(struct screen_write_ctx *, int, u_int); |