diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-03 13:00:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-03 13:00:38 +0100 |
commit | 016154919e317a8ce2b7f2e33db2f39ca3a8edb9 (patch) | |
tree | cc3f87f501d05a34f04c9cce64f15d6728bf27bf /src/option.c | |
parent | 2459a5ecaa43c8549ea53e9364253ff891676da5 (diff) | |
download | vim-016154919e317a8ce2b7f2e33db2f39ca3a8edb9.zip |
updated for version 7.4.610
Problem: Some function headers may be missing from generated .pro files.
Solution: Add PROTO to the #ifdef.
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option.c b/src/option.c index e5887366b..1ba08f7e6 100644 --- a/src/option.c +++ b/src/option.c @@ -11212,7 +11212,7 @@ wc_use_keyname(varp, wcp) return FALSE; } -#ifdef FEAT_LANGMAP +#if defined(FEAT_LANGMAP) || defined(PROTO) /* * Any character has an equivalent 'langmap' character. This is used for * keyboards that have a special language mode that sends characters above @@ -11226,7 +11226,7 @@ wc_use_keyname(varp, wcp) * langmap_entry_T. This does the same as langmap_mapchar[] for characters >= * 256. */ -# ifdef FEAT_MBYTE +# if defined(FEAT_MBYTE) || defined(PROTO) /* * With multi-byte support use growarray for 'langmap' chars >= 256 */ |