comparison src/drawline.c @ 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 f37028184d6a
children 8c98c74176ac
comparison
equal deleted inserted replaced
20121:ad1b07e1e895 20122:3b57ed35764e
3093 saved_c_extra = c_extra; 3093 saved_c_extra = c_extra;
3094 saved_c_final = c_final; 3094 saved_c_final = c_final;
3095 #ifdef FEAT_SYN_HL 3095 #ifdef FEAT_SYN_HL
3096 if (!(cul_screenline 3096 if (!(cul_screenline
3097 # ifdef FEAT_DIFF 3097 # ifdef FEAT_DIFF
3098 && diff_hlf == (hlf_T)0) 3098 && diff_hlf == (hlf_T)0
3099 # endif 3099 # endif
3100 ) 3100 ))
3101 saved_char_attr = char_attr; 3101 saved_char_attr = char_attr;
3102 else 3102 else
3103 #endif 3103 #endif
3104 saved_char_attr = 0; 3104 saved_char_attr = 0;
3105 n_extra = 0; 3105 n_extra = 0;