diff options
Diffstat (limited to 'src/nvim/os/env.c')
-rw-r--r-- | src/nvim/os/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/env.c b/src/nvim/os/env.c index 34b2d89f0b..6b4db8814c 100644 --- a/src/nvim/os/env.c +++ b/src/nvim/os/env.c @@ -619,7 +619,7 @@ void expand_env_esc(char *restrict srcp, char *restrict dst, int dstlen, bool es while (c-- > 0 && *tail != NUL && *tail != '}') { *var++ = *tail++; } - } else // NOLINT + } else #endif { while (c-- > 0 && *tail != NUL && vim_isIDc((uint8_t)(*tail))) { |