aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-03 21:50:14 +0800
committerGitHub <noreply@github.com>2022-08-03 21:50:14 +0800
commit0a29267514c57c438d68a3d5599bfada41363b24 (patch)
tree074aec1e5228d53508ab8447eb837f83301044f9 /src
parent3df8d9b8c56a7f0af0f7590b11831bd96ead92f1 (diff)
downloadrneovim-0a29267514c57c438d68a3d5599bfada41363b24.tar.gz
rneovim-0a29267514c57c438d68a3d5599bfada41363b24.tar.bz2
rneovim-0a29267514c57c438d68a3d5599bfada41363b24.zip
fix(completion): remove wrong FUNC_ATTR_NONNULL_ALL (#19627)
Diffstat (limited to 'src')
-rw-r--r--src/nvim/insexpand.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/insexpand.c b/src/nvim/insexpand.c
index 2fc8f1dadc..a64d8e8f00 100644
--- a/src/nvim/insexpand.c
+++ b/src/nvim/insexpand.c
@@ -825,7 +825,6 @@ static void ins_compl_longest_match(compl_T *match)
/// Add an array of matches to the list of matches.
/// Frees matches[].
static void ins_compl_add_matches(int num_matches, char **matches, int icase)
- FUNC_ATTR_NONNULL_ALL
{
int add_r = OK;
Direction dir = compl_direction;