summaryrefslogtreecommitdiff
path: root/src/regexp.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-28 22:03:20 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-28 22:03:20 +0200
commit5714b80032adcaa5ecf6d92efddf61387a280d32 (patch)
tree6f23aae31487e2790a8afc3ae6ddcd0c44ed0af9 /src/regexp.h
parente0fea9c405882bd0ee8a0a661dcd49deebe65d15 (diff)
downloadvim-git-5714b80032adcaa5ecf6d92efddf61387a280d32.tar.gz
updated for version 7.3.1033v7.3.1033
Problem: "\1" .. "\9" are not supported in the new regexp engine. Solution: Implement them. Add a few more tests.
Diffstat (limited to 'src/regexp.h')
-rw-r--r--src/regexp.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/regexp.h b/src/regexp.h
index 011eabf71..f8ff0962a 100644
--- a/src/regexp.h
+++ b/src/regexp.h
@@ -71,7 +71,6 @@ struct nfa_state
nfa_state_T *out1;
int id;
int lastlist;
- int visits;
int negated;
};