From e810f1527252f49ff499343a2f7cf8897f4a78cd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 5 May 2020 10:20:57 +0100 Subject: Store and restore cursor position when copy mode is resized, from Anindya Mukherjee. --- grid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grid.c') diff --git a/grid.c b/grid.c index 81f3709c..2437e2ea 100644 --- a/grid.c +++ b/grid.c @@ -1285,7 +1285,7 @@ grid_reflow(struct grid *gd, u_int sx) /* * If the line is exactly right or the first character is wider - * than the targe width, just move it across unchanged. + * than the target width, just move it across unchanged. */ if (width == sx || first > sx) { grid_reflow_move(target, gl); -- cgit