spellfile: Fix V547: always true condition

This condition was already checked at the surrounding if() at line 2422.
This commit is contained in:
ZyX
2017-05-20 04:37:30 +03:00
parent c7c4aad387
commit d9398982ea

View File

@@ -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;