diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-03-27 11:09:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-27 11:09:54 +0100 |
commit | 2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39 (patch) | |
tree | 27b832ee6bf690eecbaa9d296d748c2200d5feba /src/nvim/spellfile.c | |
parent | 281c011d44a5f845d4c5d9cce0d2fc513f70483b (diff) | |
parent | bf2ad145e3340205e304b5aba130952c04fd8473 (diff) | |
download | rneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.tar.gz rneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.tar.bz2 rneovim-2470c88291ef1e4db6b49fd1adf17bc7fb6ecd39.zip |
Merge #9794 from janlazo/vim-8.0.1528
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r-- | src/nvim/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index 7a6f2fce39..ccad893d61 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -3227,7 +3227,7 @@ static int get_pfxlist(afffile_T *affile, char_u *afflist, char_u *store_afflist prevp = p; if (get_affitem(affile->af_flagtype, &p) != 0) { // A flag is a postponed prefix flag if it appears in "af_pref" - // and it's ID is not zero. + // and its ID is not zero. STRLCPY(key, prevp, p - prevp + 1); hi = hash_find(&affile->af_pref, key); if (!HASHITEM_EMPTY(hi)) { |