diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-05-13 12:09:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-05-13 12:09:24 +0000 |
commit | 5dd95a1058261de5efe778e2fca3159ef6c7244e (patch) | |
tree | 02fe6a50940760a18719fcc0934f1b7eaa42a80a | |
parent | 86c9ee2182b1e7bd8f251d72ac316924f5b817d2 (diff) | |
download | vim-git-5dd95a1058261de5efe778e2fca3159ef6c7244e.tar.gz |
updated for version 7.0-009v7.0.009
-rw-r--r-- | src/spell.c | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index e22e4285f..c3bf5b0a2 100644 --- a/src/spell.c +++ b/src/spell.c @@ -2108,7 +2108,8 @@ spell_move_to(wp, dir, allwords, curline, attrp) * possible. */ STRCPY(buf, line); if (lnum < wp->w_buffer->b_ml.ml_line_count) - spell_cat_line(buf + STRLEN(buf), ml_get(lnum + 1), MAXWLEN); + spell_cat_line(buf + STRLEN(buf), + ml_get_buf(wp->w_buffer, lnum + 1, FALSE), MAXWLEN); p = buf + skip; endp = buf + len; diff --git a/src/version.c b/src/version.c index 3f8a31a07..9261c8089 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 9, +/**/ 8, /**/ 7, |