summaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-02-03 13:05:32 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-03 13:05:32 +0000
commit6e1d31e9e3ca42cb883abca198f011dc6f4ceb14 (patch)
tree85e836c29901bb4997d3f839303959f12a8f1b75 /src/indent.c
parent2d3ac2e03093c4b0ae5d18c5f2f51ae0c2a9ec72 (diff)
patch 8.2.4288: preprocessor indents are inconsistentv8.2.4288
Problem: Preprocessor indents are inconsistent. Solution: Fix preprocessor indents. (Ken Takata, closes #9691)
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index 8e9b0d148c..b62308d2a4 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2173,7 +2173,7 @@ f_indent(typval_T *argvars, typval_T *rettv)
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 @@ f_lispindent(typval_T *argvars UNUSED, typval_T *rettv)
else if (in_vim9script())
semsg(_(e_invalid_line_number_nr), lnum);
else
-#endif
+# endif
rettv->vval.v_number = -1;
}
#endif