patch 8.2.4288: preprocessor indents are inconsistent
Problem: Preprocessor indents are inconsistent.
Solution: Fix preprocessor indents. (Ken Takata, closes #9691)
diff --git a/src/indent.c b/src/indent.c
index 8e9b0d1..b62308d 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2173,7 +2173,7 @@
void
f_lispindent(typval_T *argvars UNUSED, typval_T *rettv)
{
-#ifdef FEAT_LISP
+# ifdef FEAT_LISP
pos_T pos;
linenr_T lnum;
@@ -2191,7 +2191,7 @@
else if (in_vim9script())
semsg(_(e_invalid_line_number_nr), lnum);
else
-#endif
+# endif
rettv->vval.v_number = -1;
}
#endif