diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-07 14:21:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 14:21:01 +0200 |
commit | add3ad6a487b1ae0f07cacc24e335af8780b2243 (patch) | |
tree | fb8386e7a43e59751749c08db66dda8ddc6c2db8 /src/nvim/ops.c | |
parent | d30621064105d1f5e4e695fb09607269694f02d0 (diff) | |
parent | d0897243f6a6bb802fc9622486afd69eb65fa6d5 (diff) | |
download | rneovim-add3ad6a487b1ae0f07cacc24e335af8780b2243.tar.gz rneovim-add3ad6a487b1ae0f07cacc24e335af8780b2243.tar.bz2 rneovim-add3ad6a487b1ae0f07cacc24e335af8780b2243.zip |
Merge pull request #18450 from dundargoc/build/clint/remove-function-size-warning
build(clint): remove "function size is too large" warning
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 7e5840e444..f7a3201568 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3761,7 +3761,7 @@ end: // If the cursor is past the end of the line put it at the end. adjust_cursor_eol(); -} // NOLINT(readability/fn_size) +} /* * When the cursor is on the NUL past the end of the line and it should not be |