summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-24 17:39:52 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-24 17:39:52 +0200
commit72ada0f8c2655e365d9284bcc9243e29e5951f04 (patch)
tree76142fc4359fc794e785c924cec6c04f427def9a /src
parentffbbcb597c2626224594bc1a2ac1aa7f77539fcc (diff)
Fix for cursor position in wrapped line with concealed text.
Diffstat (limited to 'src')
-rw-r--r--src/screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index e7c3ad2663..2106d90a02 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4500,6 +4500,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
&& (int)wp->w_virtcol <= vcol + n_skip)
{
wp->w_wcol = col - boguscols;
+ wp->w_wrow = row;
did_wcol = TRUE;
}
#endif