diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-25 15:31:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-25 15:31:05 +0200 |
commit | f47ca63dbcc547fa7d16ff4a0e8729ba9c3c508a (patch) | |
tree | 8fc19fd5ee0e1914b103cc8e663451f2a28ba228 /src/regexp.h | |
parent | 56d58d51bfefe428c9fcbb6dd0e87b08c0ea30b2 (diff) | |
download | vim-git-f47ca63dbcc547fa7d16ff4a0e8729ba9c3c508a.tar.gz |
updated for version 7.3.1016v7.3.1016
Problem: Unused field in nfa_state.
Solution: Remove lastthread.
Diffstat (limited to 'src/regexp.h')
-rw-r--r-- | src/regexp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/regexp.h b/src/regexp.h index 55b4722b8..1fe42729e 100644 --- a/src/regexp.h +++ b/src/regexp.h @@ -74,7 +74,6 @@ struct nfa_state int id; int lastlist; int visits; - thread_T *lastthread; int negated; }; |