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 f538ee3 commit 0a0c7a7Copy full SHA for 0a0c7a7
src/move.c
@@ -21,6 +21,9 @@
21
22
static void comp_botline __ARGS((win_T *wp));
23
static void redraw_for_cursorline __ARGS((win_T *wp));
24
+#ifdef FEAT_GUI_MACVIM
25
+static void redraw_for_ligatures __ARGS((win_T *wp));
26
+#endif
27
static int scrolljump_value __ARGS((void));
28
static int check_top_offset __ARGS((void));
29
static void curs_rows __ARGS((win_T *wp));
@@ -164,7 +167,7 @@ redraw_for_ligatures(wp)
164
167
if (p_macligatures
165
168
&& (wp->w_p_rnu == 0
166
169
#ifdef FEAT_SYN_HL
- || wp->w_p_cul == 0
170
+ && wp->w_p_cul == 0
171
#endif
172
))
173
redraw_win_later(wp, CLEAR);
0 commit comments