patch 8.1.2096: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate FEAT_COMMENTS.
diff --git a/src/normal.c b/src/normal.c
index 4db90d6..98ec9ef 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -3281,7 +3281,6 @@
}
break;
}
-#ifdef FEAT_COMMENTS
if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
{
/* Ignore this line, continue at start of next line. */
@@ -3289,7 +3288,6 @@
curwin->w_cursor.col = 0;
continue;
}
-#endif
valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
/* If the current position is not a valid identifier and a previous
@@ -7228,10 +7226,8 @@
(cap->cmdchar == 'o' ? 1 : 0))
) == OK
&& open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
-#ifdef FEAT_COMMENTS
- has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
-#endif
- 0, 0) == OK)
+ has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
+ 0) == OK)
{
#ifdef FEAT_CONCEAL
if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)