diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-15 21:34:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-15 21:34:18 +0200 |
commit | 8b51b7f0f17af149a8ce76e805050977857f9e50 (patch) | |
tree | 62937457eb147bf903de64ec6ef863e97db20abd /src/change.c | |
parent | ad5e5631c5dc93a50bbe637be254c5e9968848ea (diff) | |
download | vim-git-8b51b7f0f17af149a8ce76e805050977857f9e50.tar.gz |
patch 8.2.1690: text properties not adjusted for "I" in Visual block modev8.2.1690
Problem: Text properties not adjusted for "I" in Visual block mode.
Solution: Call inserted_bytes().
Diffstat (limited to 'src/change.c')
-rw-r--r-- | src/change.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/change.c b/src/change.c index 3a823b629..44c2f0480 100644 --- a/src/change.c +++ b/src/change.c @@ -693,7 +693,7 @@ changed_bytes(linenr_T lnum, colnr_T col) * Like changed_bytes() but also adjust text properties for "added" bytes. * When "added" is negative text was deleted. */ - static void + void inserted_bytes(linenr_T lnum, colnr_T col, int added UNUSED) { #ifdef FEAT_PROP_POPUP |