diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2021-11-16 13:16:33 +0100 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-10 10:09:28 +0800 |
commit | 4fed1bf7e537a3a7dc9e8385c65f68ac5c0cf616 (patch) | |
tree | 7f6b7b75b5dbccb8ba2c781c67f2182efc5d3c0c /src/nvim/regexp.h | |
parent | a978d7689db7aafb992b339f788cdd038750949e (diff) | |
download | rneovim-4fed1bf7e537a3a7dc9e8385c65f68ac5c0cf616.tar.gz rneovim-4fed1bf7e537a3a7dc9e8385c65f68ac5c0cf616.tar.bz2 rneovim-4fed1bf7e537a3a7dc9e8385c65f68ac5c0cf616.zip |
vim-patch:8.1.2005: the regexp.c file is too big
Problem: The regexp.c file is too big.
Solution: Move the backtracking engine to a separate file. (Yegappan
Lakshmanan, closes vim/vim#4905)
https://github.com/vim/vim/commit/6d7d7cf750bca5d641e464f6a3af5ee5b99a5ac8
vim-patch:8.1.2010: new file uses old style comments
Problem: New file uses old style comments.
Solution: Change to new style comments. (Yegappan Lakshmanan, closes vim/vim#4910)
https://github.com/vim/vim/commit/9490b9a61cf1f1f3fa9758663a33124ea9f71c87
Diffstat (limited to 'src/nvim/regexp.h')
-rw-r--r-- | src/nvim/regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/regexp.h b/src/nvim/regexp.h index 9527afed58..6edbcf8a31 100644 --- a/src/nvim/regexp.h +++ b/src/nvim/regexp.h @@ -19,6 +19,7 @@ // regexp.c #ifdef INCLUDE_GENERATED_DECLARATIONS # include "regexp.h.generated.h" +# include "regexp_bt.h.generated.h" #endif #endif // NVIM_REGEXP_H |