Skip to content

Commit cca6b33

Browse files
committed
updated for version 7.4.610
Problem: Some function headers may be missing from generated .pro files. Solution: Add PROTO to the #ifdef.
1 parent a6b1611 commit cca6b33

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/option.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11212,7 +11212,7 @@ wc_use_keyname(varp, wcp)
1121211212
return FALSE;
1121311213
}
1121411214

11215-
#ifdef FEAT_LANGMAP
11215+
#if defined(FEAT_LANGMAP) || defined(PROTO)
1121611216
/*
1121711217
* Any character has an equivalent 'langmap' character. This is used for
1121811218
* keyboards that have a special language mode that sends characters above
@@ -11226,7 +11226,7 @@ wc_use_keyname(varp, wcp)
1122611226
* langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
1122711227
* 256.
1122811228
*/
11229-
# ifdef FEAT_MBYTE
11229+
# if defined(FEAT_MBYTE) || defined(PROTO)
1123011230
/*
1123111231
* With multi-byte support use growarray for 'langmap' chars >= 256
1123211232
*/

src/syntax.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6537,7 +6537,7 @@ syn_get_foldlevel(wp, lnum)
65376537
}
65386538
#endif
65396539

6540-
#ifdef FEAT_PROFILE
6540+
#if defined(FEAT_PROFILE) || defined(PROTO)
65416541
/*
65426542
* ":syntime".
65436543
*/

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
610,
744746
/**/
745747
609,
746748
/**/

0 commit comments

Comments
 (0)