diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-12 22:18:00 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-12 22:18:00 +0000 |
commit | a1956f6b076b269c1c8068157e98e33b63106858 (patch) | |
tree | 354d4fd26c9ffc641d61990de48e0e8bb3eb5530 /src/memline.c | |
parent | 17be7e614ede412f01d487ce69ba5641a4ae648b (diff) | |
download | vim-a1956f6b076b269c1c8068157e98e33b63106858.zip |
updated for version 7.0222
Diffstat (limited to 'src/memline.c')
-rw-r--r-- | src/memline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/memline.c b/src/memline.c index 876704a8a..6dc23f4e0 100644 --- a/src/memline.c +++ b/src/memline.c @@ -524,7 +524,7 @@ ml_open_file(buf) if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf) return; /* nothing to do */ -#ifdef FEAT_SYN_HL +#ifdef FEAT_SPELL /* For a spell buffer use a temp file name. */ if (buf->b_spell) { @@ -2124,7 +2124,7 @@ ml_append(lnum, line, len, newfile) return ml_append_int(curbuf, lnum, line, len, newfile, FALSE); } -#if defined(FEAT_SYN_HL) || defined(PROTO) +#if defined(FEAT_SPELL) || defined(PROTO) /* * Like ml_append() but for an arbitrary buffer. The buffer must already have * a memline. |