changeset 20122:3b57ed35764e v8.2.0616

patch 8.2.0616: build error when disabling the diff feature Commit: https://github.com/vim/vim/commit/e770598f31ad88fc98e40ead4b228ebc04afaa5d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 21 22:23:15 2020 +0200 patch 8.2.0616: build error when disabling the diff feature Problem: Build error when disabling the diff feature. Solution: Move parenthesis outside of #ifdef. (Tom Ryder)
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Apr 2020 22:30:04 +0200
parents ad1b07e1e895
children 8810fcc6de76
files src/drawline.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -3095,9 +3095,9 @@ win_line(
 #ifdef FEAT_SYN_HL
 	    if (!(cul_screenline
 # ifdef FEAT_DIFF
-			&& diff_hlf == (hlf_T)0)
+			&& diff_hlf == (hlf_T)0
 # endif
-		    )
+		    ))
 		saved_char_attr = char_attr;
 	    else
 #endif
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    616,
+/**/
     615,
 /**/
     614,