diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-26 17:28:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-26 17:28:26 +0100 |
commit | 29ddebef4038d2d2b3bc9d8d3b0109f4046d6fbf (patch) | |
tree | 66144403e05268df8594b01d0298db4f570ed60f /src/spell.c | |
parent | 3e460fd8b72db905fbf9f01b00371384ffc415b8 (diff) | |
download | vim-git-29ddebef4038d2d2b3bc9d8d3b0109f4046d6fbf.tar.gz |
patch 8.1.0826: too many #ifdefsv8.1.0826
Problem: Too many #ifdefs.
Solution: Graduate FEAT_VIRTUALEDIT. Adds about 10Kbyte to the code.
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/spell.c b/src/spell.c index 59e73682b..8aadb9953 100644 --- a/src/spell.c +++ b/src/spell.c @@ -1652,9 +1652,7 @@ spell_move_to( found_one = TRUE; found_pos.lnum = lnum; found_pos.col = (int)(p - buf); -#ifdef FEAT_VIRTUALEDIT found_pos.coladd = 0; -#endif if (dir == FORWARD) { /* No need to search further. */ |