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/ex_cmds.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/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index abadd21a1a..5b831a21c0 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4467,7 +4467,7 @@ skip: return preview_buf; #undef ADJUST_SUB_FIRSTLNUM #undef PUSH_PREVIEW_LINES -} // NOLINT(readability/fn_size) +} /// Give message for number of substitutions. /// Can also be used after a ":global" command. |