0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 9.0.0880: preprocessor indenting is off

Problem:    Preprocessor indenting is off.
Solution:   Adjust preprocessor indentation. (Ken Takata, closes #11546)
This commit is contained in:
K.Takata
2022-11-14 15:31:07 +00:00
committed by Bram Moolenaar
parent dcbdd82d05
commit 161b6ac04f
7 changed files with 35 additions and 33 deletions

View File

@@ -4145,11 +4145,11 @@ in_cinkeys(
void
do_c_expr_indent(void)
{
# ifdef FEAT_EVAL
#ifdef FEAT_EVAL
if (*curbuf->b_p_inde != NUL)
fixthisline(get_expr_indent);
else
# endif
#endif
fixthisline(get_c_indent);
}