aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-01-01 15:56:00 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-01-01 19:57:44 +0100
commitb49d4e18a67d16548fa72013237a87564656170e (patch)
tree86c1f17eac78ecff4a292e43df9157ba51295f59 /src/nvim/buffer.c
parentf69658bc355e130fc2845a8e0edc8baa4f256329 (diff)
downloadrneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.gz
rneovim-b49d4e18a67d16548fa72013237a87564656170e.tar.bz2
rneovim-b49d4e18a67d16548fa72013237a87564656170e.zip
refactor: remove redundant NOLINT comments
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 41ab7ae13d..c22aaec3df 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -276,7 +276,7 @@ int open_buffer(bool read_stdin, exarg_T *eap, int flags_arg)
|| (S_ISCHR(perm)
&& is_dev_fd_file(curbuf->b_ffname))
# endif
- )) { // NOLINT(whitespace/parens)
+ )) {
read_fifo = true;
}
if (read_fifo) {
@@ -2145,7 +2145,7 @@ buf_T *buflist_findname_exp(char *fname)
#else
false
#endif
- ); // NOLINT(whitespace/parens)
+ );
if (ffname != NULL) {
buf = buflist_findname(ffname);
xfree(ffname);