diff src/cindent.c @ 31091:551ce1a137da v9.0.0880

patch 9.0.0880: preprocessor indenting is off Commit: https://github.com/vim/vim/commit/161b6ac04f257ab17779e9ba6f5b3e3e15d2a0fd Author: K.Takata <kentkt@csc.jp> Date: Mon Nov 14 15:31:07 2022 +0000 patch 9.0.0880: preprocessor indenting is off Problem: Preprocessor indenting is off. Solution: Adjust preprocessor indentation. (Ken Takata, closes https://github.com/vim/vim/issues/11546)
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Nov 2022 16:45:04 +0100
parents d3058719eff5
children b89cfd86e18e
line wrap: on
line diff
--- 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);
 }