Skip to content

Commit 66699c6

Browse files
committed
updated for version 7.3.1215
Problem: Compiler warning for function not defined. Solution: Add #ifdef.
1 parent 7fc9842 commit 66699c6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/misc1.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616

1717
static char_u *vim_version_dir __ARGS((char_u *vimdir));
1818
static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
19+
#if defined(FEAT_CMDL_COMPL)
1920
static void init_users __ARGS((void));
21+
#endif
2022
static int copy_indent __ARGS((int size, char_u *src));
2123

2224
/* All user names (for ~user completion as done by shell). */

src/version.c

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

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1215,
731733
/**/
732734
1214,
733735
/**/

0 commit comments

Comments
 (0)