mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
updated for version 7.3.976
Problem: Can't build on HP-UX. Solution: Remove modern initialization. (John Marriott)
This commit is contained in:
parent
bc0ea8f75e
commit
053bb60f44
@ -1961,14 +1961,17 @@ static void st_push __ARGS((Frag_T s, Frag_T **p, Frag_T *stack_end));
|
|||||||
static Frag_T st_pop __ARGS((Frag_T **p, Frag_T *stack));
|
static Frag_T st_pop __ARGS((Frag_T **p, Frag_T *stack));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialize Frag_T struct.
|
* Initialize a Frag_T struct and return it.
|
||||||
*/
|
*/
|
||||||
static Frag_T
|
static Frag_T
|
||||||
frag(start, out)
|
frag(start, out)
|
||||||
nfa_state_T *start;
|
nfa_state_T *start;
|
||||||
Ptrlist *out;
|
Ptrlist *out;
|
||||||
{
|
{
|
||||||
Frag_T n = { start, out };
|
Frag_T n;
|
||||||
|
|
||||||
|
n.start = start;
|
||||||
|
n.out = out;
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2144,7 +2147,7 @@ post2nfa(postfix, end, nfa_calc_size)
|
|||||||
if (postfix == NULL)
|
if (postfix == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
#define PUSH(s) st_push ((s), &stackp, stack_end)
|
#define PUSH(s) st_push((s), &stackp, stack_end)
|
||||||
#define POP() st_pop(&stackp, stack); \
|
#define POP() st_pop(&stackp, stack); \
|
||||||
if (stackp < stack) \
|
if (stackp < stack) \
|
||||||
{ \
|
{ \
|
||||||
|
@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
976,
|
||||||
/**/
|
/**/
|
||||||
975,
|
975,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user