From 053bb60f4491ae7ce9fa700655b2345cb2bf11cc Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 20 May 2013 13:55:21 +0200 Subject: [PATCH] updated for version 7.3.976 Problem: Can't build on HP-UX. Solution: Remove modern initialization. (John Marriott) --- src/regexp_nfa.c | 9 ++++++--- src/version.c | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index eea173816..cb4188874 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -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)); /* - * Initialize Frag_T struct. + * Initialize a Frag_T struct and return it. */ static Frag_T frag(start, out) nfa_state_T *start; Ptrlist *out; { - Frag_T n = { start, out }; + Frag_T n; + + n.start = start; + n.out = out; return n; } @@ -2144,7 +2147,7 @@ post2nfa(postfix, end, nfa_calc_size) if (postfix == 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); \ if (stackp < stack) \ { \ diff --git a/src/version.c b/src/version.c index 6f07a0416..933cf911a 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 976, /**/ 975, /**/ -- 2.50.1