diff options
| author | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
| commit | f7ff6e85e8a4e84cff023f5db4b66ef85986605a (patch) | |
| tree | 813913a9c1d1418b5b85e3a4bc414dbeb2b3f6a3 /src/option.h | |
| parent | a68783751647e3243ca6f22df62907efbdbccb02 (diff) | |
| download | vim-git-f7ff6e85e8a4e84cff023f5db4b66ef85986605a.tar.gz | |
updated for version 7.4.212v7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
Diffstat (limited to 'src/option.h')
| -rw-r--r-- | src/option.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/option.h b/src/option.h index 5144c3373..4ccde58a2 100644 --- a/src/option.h +++ b/src/option.h @@ -572,9 +572,7 @@ EXTERN char_u *p_isi; /* 'isident' */ EXTERN char_u *p_isp; /* 'isprint' */ EXTERN int p_js; /* 'joinspaces' */ EXTERN char_u *p_kp; /* 'keywordprg' */ -#ifdef FEAT_VISUAL EXTERN char_u *p_km; /* 'keymodel' */ -#endif #ifdef FEAT_LANGMAP EXTERN char_u *p_langmap; /* 'langmap'*/ #endif @@ -681,10 +679,8 @@ EXTERN char_u *p_sbo; /* 'scrollopt' */ #endif EXTERN char_u *p_sections; /* 'sections' */ EXTERN int p_secure; /* 'secure' */ -#ifdef FEAT_VISUAL EXTERN char_u *p_sel; /* 'selection' */ EXTERN char_u *p_slm; /* 'selectmode' */ -#endif #ifdef FEAT_SESSION EXTERN char_u *p_ssop; /* 'sessionoptions' */ EXTERN unsigned ssop_flags; |
