diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-07-14 08:15:05 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-07-14 08:15:05 +0100 |
commit | 5ffb869e1a543b264b9d94a19077d16f9832aff5 (patch) | |
tree | 59392329b2b678d46667e0960efa9e2c7dfb202a /input.c | |
parent | bed3069fd746741286e624126774f98ed51fbbdf (diff) | |
parent | dcc28434f460f637976ca313e062c0728d438e97 (diff) | |
download | rtmux-5ffb869e1a543b264b9d94a19077d16f9832aff5.tar.gz rtmux-5ffb869e1a543b264b9d94a19077d16f9832aff5.tar.bz2 rtmux-5ffb869e1a543b264b9d94a19077d16f9832aff5.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -801,10 +801,7 @@ input_reset(struct window_pane *wp) { struct input_ctx *ictx = wp->ictx; - memcpy(&ictx->cell, &grid_default_cell, sizeof ictx->cell); - memcpy(&ictx->old_cell, &ictx->cell, sizeof ictx->old_cell); - ictx->old_cx = 0; - ictx->old_cy = 0; + input_reset_cell(ictx); if (wp->mode == NULL) screen_write_start(&ictx->ctx, wp, &wp->base); |