aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-08-29 21:56:06 +0200
committerGitHub <noreply@github.com>2018-08-29 21:56:06 +0200
commit93ee31bf650a74c2e4cc60897210c9175ab11e4d (patch)
tree7b2f94c1cd177452a5a1f877d18f850b5e3e2fdc
parent17ce06d1c98e35192b644b1a38c3eed714f39ef4 (diff)
parentc5c3b0b8f9ec593d501ef56236c4745431793b98 (diff)
downloadrneovim-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.c1
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;