diff options
author | K.Takata <kentkt@csc.jp> | 2022-02-03 13:05:32 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-03 13:05:32 +0000 |
commit | 6e1d31e9e3ca42cb883abca198f011dc6f4ceb14 (patch) | |
tree | 85e836c29901bb4997d3f839303959f12a8f1b75 /src/indent.c | |
parent | 2d3ac2e03093c4b0ae5d18c5f2f51ae0c2a9ec72 (diff) | |
download | vim-git-6e1d31e9e3ca42cb883abca198f011dc6f4ceb14.tar.gz |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index 8e9b0d148..b62308d2a 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 |