mirror of
https://github.com/neovim/neovim.git
synced 2026-04-20 14:25:32 +00:00
spellfile: Fix V547: always true condition
This condition was already checked at the surrounding if() at line 2422.
This commit is contained in:
@@ -2468,8 +2468,7 @@ static afffile_T *spell_read_aff(spellinfo_T *spin, char_u *fname)
|
||||
}
|
||||
}
|
||||
|
||||
if (aff_entry->ae_chop == NULL
|
||||
&& aff_entry->ae_flags == NULL) {
|
||||
if (aff_entry->ae_chop == NULL) {
|
||||
int idx;
|
||||
char_u **pp;
|
||||
int n;
|
||||
|
||||
Reference in New Issue
Block a user