File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -386,6 +386,9 @@ SRC = \
386386 usercmd.c \
387387 userfunc.c \
388388 version.c \
389+ vim9compile.c \
390+ vim9execute.c \
391+ vim9script.c \
389392 viminfo.c \
390393 window.c \
391394 $(GUI_SRC) \
@@ -489,6 +492,9 @@ OBJ = \
489492 usercmd.obj \
490493 userfunc.obj \
491494 version.obj \
495+ vim9compile.obj \
496+ vim9execute.obj \
497+ vim9script.obj \
492498 viminfo.obj \
493499 window.obj \
494500 $(GUI_OBJ) \
@@ -994,6 +1000,18 @@ viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
9941000 ascii.h keymap.h term.h macros.h structs.h regexp.h \
9951001 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
9961002 globals.h version.h
1003+ vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \
1004+ ascii.h keymap.h term.h macros.h structs.h regexp.h \
1005+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1006+ globals.h version.h
1007+ vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \
1008+ ascii.h keymap.h term.h macros.h structs.h regexp.h \
1009+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1010+ globals.h version.h
1011+ vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \
1012+ ascii.h keymap.h term.h macros.h structs.h regexp.h \
1013+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1014+ globals.h version.h
9971015window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
9981016 ascii.h keymap.h term.h macros.h structs.h regexp.h \
9991017 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Original file line number Diff line number Diff line change @@ -742,6 +742,8 @@ static char *(features[]) =
742742
743743static int included_patches [] =
744744{ /* Add new patch number below this line */
745+ /**/
746+ 255 ,
745747/**/
746748 254 ,
747749/**/
You can’t perform that action at this time.
0 commit comments