diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-07 23:16:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-07 23:16:33 +0200 |
commit | 6d7d7cf750bca5d641e464f6a3af5ee5b99a5ac8 (patch) | |
tree | 1b35d750cc6c6613afc5af3ed18c907c186634a2 /src/Makefile | |
parent | f6ed61e1489e40eada55a4f1782e1ed82bcad7d9 (diff) | |
download | vim-git-6d7d7cf750bca5d641e464f6a3af5ee5b99a5ac8.tar.gz |
patch 8.1.2005: the regexp.c file is too bigv8.1.2005
Problem: The regexp.c file is too big.
Solution: Move the backtracking engine to a separate file. (Yegappan
Lakshmanan, closes #4905)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 34d1c145a..34198ea00 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3326,7 +3326,7 @@ objects/pty.o: pty.c objects/quickfix.o: quickfix.c $(CCC) -o $@ quickfix.c -objects/regexp.o: regexp.c regexp_nfa.c +objects/regexp.o: regexp.c regexp_bt.c regexp_nfa.c $(CCC) -o $@ regexp.c objects/scriptfile.o: scriptfile.c @@ -3794,7 +3794,7 @@ objects/quickfix.o: quickfix.c vim.h protodef.h auto/config.h feature.h os_unix. objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ - proto.h globals.h regexp_nfa.c + proto.h globals.h regexp_bt.c regexp_nfa.c objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ |