diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-12 21:50:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-12 21:50:18 +0000 |
commit | f71a3db47e928aaeea83c7bea011188d4898d249 (patch) | |
tree | 6ac9fc74bf8aa5c666d3eb6176a507da5a2aff52 /src/ex_docmd.c | |
parent | e48ec1fa6bf564f210131ae14767af4f9419ec66 (diff) | |
download | vim-git-f71a3db47e928aaeea83c7bea011188d4898d249.tar.gz |
updated for version 7.0222
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 7e5e3b175..f1c6bb1e0 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -236,6 +236,8 @@ static void ex_popup __ARGS((exarg_T *eap)); #endif #ifndef FEAT_SYN_HL # define ex_syntax ex_ni +#endif +#ifndef FEAT_SPELL # define ex_spell ex_ni # define ex_mkspell ex_ni # define ex_spelldump ex_ni @@ -7025,6 +7027,7 @@ theend: # endif } +#if defined(FEAT_MOUSE) || defined(PROTO) /* * Open a new tab page. */ @@ -7039,6 +7042,7 @@ tabpage_new() ea.arg = (char_u *)""; ex_splitview(&ea); } +#endif /* * :tabnext command @@ -10588,7 +10592,7 @@ ex_nohlsearch(eap) exarg_T *eap; { no_hlsearch = TRUE; - redraw_all_later(NOT_VALID); + redraw_all_later(SOME_VALID); } /* @@ -10618,7 +10622,7 @@ ex_match(eap) { vim_free(curwin->w_match[mi].regprog); curwin->w_match[mi].regprog = NULL; - redraw_later(NOT_VALID); /* always need a redraw */ + redraw_later(SOME_VALID); /* always need a redraw */ } if (ends_excmd(*eap->arg)) |