]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.1030 v7.3.1030
authorBram Moolenaar <Bram@vim.org>
Sun, 26 May 2013 21:13:07 +0000 (23:13 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 26 May 2013 21:13:07 +0000 (23:13 +0200)
Problem:    Can't build for debugging.
Solution:   Fix struct member names.

src/regexp_nfa.c
src/version.c

index 7eba2c69bae9d84a0f55dacd416a8d7e2a2d3a2e..1d992a9a0ce294e498d6f3304c73a549b554d434 100644 (file)
@@ -3164,19 +3164,19 @@ nfa_regmatch(start, submatch, m)
                        submatch->linelist[j].end = t->sub.linelist[j].end;
                    }
 #ifdef ENABLE_LOG
-               for (j = 0; j < 4; j++)
+               for (j = 0; j < t->sub.in_use; j++)
                    if (REG_MULTI)
                        fprintf(log_fd, "\n *** group %d, start: c=%d, l=%d, end: c=%d, l=%d",
                                j,
-                               t->sub.startpos[j].col,
-                               (int)t->sub.startpos[j].lnum,
-                               t->sub.endpos[j].col,
-                               (int)t->sub.endpos[j].lnum);
+                               t->sub.multilist[j].start.col,
+                               (int)t->sub.multilist[j].start.lnum,
+                               t->sub.multilist[j].end.col,
+                               (int)t->sub.multilist[j].end.lnum);
                    else
                        fprintf(log_fd, "\n *** group %d, start: \"%s\", end: \"%s\"",
                                j,
-                               (char *)t->sub.start[j],
-                               (char *)t->sub.end[j]);
+                               (char *)t->sub.linelist[j].start,
+                               (char *)t->sub.linelist[j].end);
                fprintf(log_fd, "\n");
 #endif
                /* Found the left-most longest match, do not look at any other
index 3eb2d05600f9a202f2a4799b6a96f5e2cc80684d..6170d7ca3bc55796a9d05ef537b897c4378e3d43 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1030,
 /**/
     1029,
 /**/