comparison src/regexp.h @ 4571:b2a8e3a66f8c v7.3.1033

updated for version 7.3.1033 Problem: "\1" .. "\9" are not supported in the new regexp engine. Solution: Implement them. Add a few more tests.
author Bram Moolenaar <bram@vim.org>
date Tue, 28 May 2013 22:03:20 +0200
parents 4d81fdda8f35
children 321cfbef9431
comparison
equal deleted inserted replaced
4570:7f988965bc43 4571:b2a8e3a66f8c
69 int c; 69 int c;
70 nfa_state_T *out; 70 nfa_state_T *out;
71 nfa_state_T *out1; 71 nfa_state_T *out1;
72 int id; 72 int id;
73 int lastlist; 73 int lastlist;
74 int visits;
75 int negated; 74 int negated;
76 }; 75 };
77 76
78 /* 77 /*
79 * Structure used by the NFA matcher. 78 * Structure used by the NFA matcher.