summaryrefslogtreecommitdiffstats
path: root/src/cindent.c
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-11-14 15:31:07 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-14 15:31:07 +0000
commit161b6ac04f257ab17779e9ba6f5b3e3e15d2a0fd (patch)
treef2d7046311159ccfdc94f337addac087d92478bf /src/cindent.c
parentdcbdd82d059a9b621e09f4447446a92ae2562e16 (diff)
patch 9.0.0880: preprocessor indenting is offv9.0.0880
Problem: Preprocessor indenting is off. Solution: Adjust preprocessor indentation. (Ken Takata, closes #11546)
Diffstat (limited to 'src/cindent.c')
-rw-r--r--src/cindent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cindent.c b/src/cindent.c
index 15b459cd6f..105e08cc8c 100644
--- a/src/cindent.c
+++ b/src/cindent.c
@@ -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);
}