diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-13 21:59:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-13 21:59:25 +0100 |
commit | f2cecb6c10909184281e31a8f968200f3841562d (patch) | |
tree | 9154211c0265a4cfb4091fd2cc6dd62a0f5c029c /src | |
parent | ae8d2de3a9c0436a543c7d46071104af31ff6db7 (diff) | |
download | vim-git-f2cecb6c10909184281e31a8f968200f3841562d.tar.gz |
patch 8.2.0255: VMS: missing files in buildv8.2.0255
Problem: VMS: missing files in build.
Solution: Add the files. (Zoltan Arpadffy)
Diffstat (limited to 'src')
-rw-r--r-- | src/Make_vms.mms | 18 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index 6d5db4b6e..8a74d3eb0 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -386,6 +386,9 @@ SRC = \ usercmd.c \ userfunc.c \ version.c \ + vim9compile.c \ + vim9execute.c \ + vim9script.c \ viminfo.c \ window.c \ $(GUI_SRC) \ @@ -489,6 +492,9 @@ OBJ = \ usercmd.obj \ userfunc.obj \ version.obj \ + vim9compile.obj \ + vim9execute.obj \ + vim9script.obj \ viminfo.obj \ window.obj \ $(GUI_OBJ) \ @@ -994,6 +1000,18 @@ viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ ascii.h keymap.h term.h macros.h structs.h regexp.h \ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ globals.h version.h +vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ + ascii.h keymap.h term.h macros.h structs.h regexp.h \ + gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ + globals.h version.h +vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ + ascii.h keymap.h term.h macros.h structs.h regexp.h \ + gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ + globals.h version.h +vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ + ascii.h keymap.h term.h macros.h structs.h regexp.h \ + gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ + globals.h version.h window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ ascii.h keymap.h term.h macros.h structs.h regexp.h \ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ diff --git a/src/version.c b/src/version.c index dc3d1634f..49a4b08ea 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 255, +/**/ 254, /**/ 253, |