updated for version 7.4.169
Problem:    ":sleep" puts cursor in the wrong column. (Liang Li)
Solution:   Add the window offset. (Christian Brabandt)
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 17c5606..315b170 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8371,7 +8371,7 @@
     {
 	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;