Fix for cursor position in wrapped line with concealed text.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 119ec99..acbacb5 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -40,8 +40,6 @@
     New patch 2010 Jul 24
     Docs patch by Dominique Pelle, Mar 25 included?
 
-Check position in wrapped line with 'concealcursor' set.
-
 'undoreload' option: when fewer lines than these consider a reload as a change
 action and save the text before the reload, don't clear undo info.
 
diff --git a/src/screen.c b/src/screen.c
index e7c3ad2..2106d90 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4500,6 +4500,7 @@
 		&& (int)wp->w_virtcol <= vcol + n_skip)
 	{
 	    wp->w_wcol = col - boguscols;
+	    wp->w_wrow = row;
 	    did_wcol = TRUE;
 	}
 #endif