aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-07 14:21:01 +0200
committerGitHub <noreply@github.com>2022-05-07 14:21:01 +0200
commitadd3ad6a487b1ae0f07cacc24e335af8780b2243 (patch)
treefb8386e7a43e59751749c08db66dda8ddc6c2db8 /src/nvim/buffer.c
parentd30621064105d1f5e4e695fb09607269694f02d0 (diff)
parentd0897243f6a6bb802fc9622486afd69eb65fa6d5 (diff)
downloadrneovim-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/buffer.c')
-rw-r--r--src/nvim/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 1ae1811772..9759bdb46e 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -4544,7 +4544,7 @@ int build_stl_str_hl(win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use
}
return width;
-} // NOLINT(readability/fn_size)
+}
/// Get relative cursor position in window into "buf[buflen]", in the form 99%,
/// using "Top", "Bot" or "All" when appropriate.