mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.1.2096: too many #ifdefs
Problem: Too many #ifdefs. Solution: Graduate FEAT_COMMENTS.
This commit is contained in:
@@ -3281,7 +3281,6 @@ find_decl(
|
||||
}
|
||||
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 @@ find_decl(
|
||||
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 @@ n_opencmd(cmdarg_T *cap)
|
||||
(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)
|
||||
|
Reference in New Issue
Block a user