Skip to content

Commit 275152c

Browse files
committed
updated for version 7.3.1214
Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations.
1 parent 9426fce commit 275152c

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/misc1.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
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+
static void init_users __ARGS((void));
1920
static int copy_indent __ARGS((int size, char_u *src));
2021

2122
/* All user names (for ~user completion as done by shell). */
@@ -4487,7 +4488,8 @@ get_env_name(xp, idx)
44874488
* Done only once and then cached.
44884489
*/
44894490
static void
4490-
init_users() {
4491+
init_users()
4492+
{
44914493
static int lazy_init_done = FALSE;
44924494

44934495
if (lazy_init_done)

src/regexp_nfa.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ static int nfa_regcomp_start __ARGS((char_u *expr, int re_flags));
273273
static int nfa_get_reganch __ARGS((nfa_state_T *start, int depth));
274274
static int nfa_get_regstart __ARGS((nfa_state_T *start, int depth));
275275
static char_u *nfa_get_match_text __ARGS((nfa_state_T *start));
276+
static int realloc_post_list __ARGS((void));
276277
static int nfa_recognize_char_class __ARGS((char_u *start, char_u *end, int extra_newl));
277278
static int nfa_emit_equi_class __ARGS((int c));
278279
static int nfa_regatom __ARGS((void));

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+
1214,
731733
/**/
732734
1213,
733735
/**/

0 commit comments

Comments
 (0)