diff options
author | 2017-02-08 08:50:10 +0000 | |
---|---|---|
committer | 2017-02-08 08:50:10 +0000 | |
commit | be47f69a3cc640e34e1342bcc98e2f553e8f393b (patch) | |
tree | 886f3d47aa735436a4b2503a23d323a60f9a9448 /usr.bin/tmux/tmux.h | |
parent | Tweak how much we expand lines by. (diff) | |
download | wireguard-openbsd-be47f69a3cc640e34e1342bcc98e2f553e8f393b.tar.xz wireguard-openbsd-be47f69a3cc640e34e1342bcc98e2f553e8f393b.zip |
Trying to avoid the occasional newline by saving the last cell on screen
is not actually helping us much and just adds complexity, so don't
bother.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index f102f22f0d3..1fee82eb103 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.718 2017/02/08 08:25:12 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.719 2017/02/08 08:50:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1105,9 +1105,6 @@ struct tty_ctx { /* The background colour used for clearing (erasing). */ u_int bg; - - /* Saved last cell on line. */ - struct grid_cell last_cell; }; /* Saved message entry. */ |