We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e7688 commit 10a8da0Copy full SHA for 10a8da0
src/screen.c
@@ -4201,8 +4201,9 @@ win_line(
4201
/*
4202
* Get a character from the line itself.
4203
*/
4204
+ c = *ptr;
4205
#ifdef FEAT_LINEBREAK
- c0 = c = *ptr;
4206
+ c0 = *ptr;
4207
#endif
4208
#ifdef FEAT_MBYTE
4209
if (has_mbyte)
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 383,
769
/**/
770
382,
771
0 commit comments