Skip to content

Commit 10a8da0

Browse files
committed
patch 8.0.0383: misplaced #ifdef
Problem: Misplaced #ifdef. (Christ van Willigen) Solution: Split assignment.
1 parent 88e7688 commit 10a8da0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/screen.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4201,8 +4201,9 @@ win_line(
42014201
/*
42024202
* Get a character from the line itself.
42034203
*/
4204+
c = *ptr;
42044205
#ifdef FEAT_LINEBREAK
4205-
c0 = c = *ptr;
4206+
c0 = *ptr;
42064207
#endif
42074208
#ifdef FEAT_MBYTE
42084209
if (has_mbyte)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
383,
767769
/**/
768770
382,
769771
/**/

0 commit comments

Comments
 (0)