diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-05 15:39:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 15:39:50 +0800 |
commit | eb814bdca0bad2a68e111d59fae62f79b8dbeef1 (patch) | |
tree | 769e0b5b6911e953e012b9d368cec5436a3ec134 /src/nvim/edit.c | |
parent | 6e2d23ac435aa187c88a4174b8f9bb3e01e8d622 (diff) | |
parent | d9e5737fdceebe17da52d5c9b41db21259449c19 (diff) | |
download | rneovim-eb814bdca0bad2a68e111d59fae62f79b8dbeef1.tar.gz rneovim-eb814bdca0bad2a68e111d59fae62f79b8dbeef1.tar.bz2 rneovim-eb814bdca0bad2a68e111d59fae62f79b8dbeef1.zip |
Merge pull request #19231 from zeertzjq/vim-8.2.3615
vim-patch:8.2.{3615,3754,5122}: indent fixes
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index d21583e951..e3c80505c8 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -7330,7 +7330,7 @@ static void replace_do_bs(int limit_col) } /// Check that C-indenting is on. -static bool cindent_on(void) +bool cindent_on(void) FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT { return !p_paste && (curbuf->b_p_cin || *curbuf->b_p_inde != NUL); |