diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-29 21:56:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 21:56:06 +0200 |
commit | 93ee31bf650a74c2e4cc60897210c9175ab11e4d (patch) | |
tree | 7b2f94c1cd177452a5a1f877d18f850b5e3e2fdc | |
parent | 17ce06d1c98e35192b644b1a38c3eed714f39ef4 (diff) | |
parent | c5c3b0b8f9ec593d501ef56236c4745431793b98 (diff) | |
download | rneovim-93ee31bf650a74c2e4cc60897210c9175ab11e4d.tar.gz rneovim-93ee31bf650a74c2e4cc60897210c9175ab11e4d.tar.bz2 rneovim-93ee31bf650a74c2e4cc60897210c9175ab11e4d.zip |
spellfile.c: Remove dead assignment #8933
Looks like a harmless accident of ebe50519775081565b66e18a471473e46f713442 (which was a followup to its parent fa7ace446e724f888c815fe177c7b6e7b8057b7d).
-rw-r--r-- | src/nvim/spellfile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index b8774bd680..21a86c6946 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -1202,7 +1202,6 @@ static int read_sal_section(FILE *fd, slang_T *slang) SPELL_READ_NONNUL_BYTES( // <salfrom> (char *)p, (size_t)(ccnt - i), fd, xfree(smp->sm_lead)); p += (ccnt - i); - i = ccnt; } *p++ = NUL; |