From 10395d8d6c9f85d5af42d30fb5bd2225bd8ef626 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 5 Feb 2014 22:46:52 +0100 Subject: [PATCH] updated for version 7.4.169 Problem: ":sleep" puts cursor in the wrong column. (Liang Li) Solution: Add the window offset. (Christian Brabandt) --- src/ex_docmd.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 17c5606e6d..315b170767 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -8371,7 +8371,7 @@ ex_sleep(eap) { n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled; if (n >= 0) - windgoto((int)n, curwin->w_wcol); + windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol); } len = eap->line2; diff --git a/src/version.c b/src/version.c index 8ebab00ef0..06ab7b425f 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 169, /**/ 168, /**/