diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-02-08 08:50:11 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-02-08 08:50:11 +0000 |
commit | e2f7795aa3258d08bd5a0e63dc430454a1dbbcb3 (patch) | |
tree | fec65f0eb78a9fa12c982133f8d7c552a0068fc6 /usr.bin/tmux/tmux.h | |
parent | 91d4f10f503b7c994fc68264081d3a105a3c3d6f (diff) |
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. */ |