0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 8.1.1687: the evalfunc.c file is too big

Problem:    The evalfunc.c file is too big.
Solution:   Move testing support to a separate file.
This commit is contained in:
Bram Moolenaar
2019-07-14 14:55:39 +02:00
parent 2898ebb44c
commit ecaa70ea29
14 changed files with 1026 additions and 1005 deletions

View File

@@ -773,6 +773,7 @@ OBJ = \
$(OUTDIR)\syntax.obj \
$(OUTDIR)\tag.obj \
$(OUTDIR)\term.obj \
$(OUTDIR)\testing.obj \
$(OUTDIR)\textprop.obj \
$(OUTDIR)\ui.obj \
$(OUTDIR)\undo.obj \
@@ -1620,6 +1621,8 @@ $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
$(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
$(OUTDIR)/term.obj: $(OUTDIR) testing.c $(INCL)
$(OUTDIR)/textprop.obj: $(OUTDIR) textprop.c $(INCL)
$(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
@@ -1778,6 +1781,7 @@ proto.h: \
proto/syntax.pro \
proto/tag.pro \
proto/term.pro \
proto/testing.pro \
proto/textprop.pro \
proto/ui.pro \
proto/undo.pro \