diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-29 21:14:42 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-29 21:14:42 +0200 |
commit | 423532e10d7335750afbace57ba65c0b6f138756 (patch) | |
tree | 2192ae232cc2e3abd065d26bb8a8d7a4436e7e58 /src/regexp.h | |
parent | 28c21919499319d26077aec1d40e54f5b8fbd367 (diff) | |
download | vim-git-423532e10d7335750afbace57ba65c0b6f138756.tar.gz |
updated for version 7.3.1039v7.3.1039
Problem: New regexp engine does not support \%23c, \%<23c and the like.
Solution: Implement them. (partly by Yasuhiro Matsumoto)
Diffstat (limited to 'src/regexp.h')
-rw-r--r-- | src/regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regexp.h b/src/regexp.h index f8ff0962a..69075b5f5 100644 --- a/src/regexp.h +++ b/src/regexp.h @@ -72,6 +72,7 @@ struct nfa_state int id; int lastlist; int negated; + int val; }; /* |