diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-22 19:11:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-22 19:11:19 +0200 |
commit | 054f14bbe58fece17f1a74ca63f0b37518f0b4de (patch) | |
tree | 14d9accc3dbe2a22a9345257e0bb514eb8f183b9 /src/Make_vms.mms | |
parent | e7e4838f25ac39177f3c3150ee53af8d6e8a0f28 (diff) | |
download | vim-git-054f14bbe58fece17f1a74ca63f0b37518f0b4de.tar.gz |
patch 8.2.1269: language and locale code spread outv8.2.1269
Problem: Language and locale code spread out.
Solution: Move relevant code to src/locale.c. (Yegappan Lakshmanan,
closes #6509)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r-- | src/Make_vms.mms | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index 0d80c0617..83b31f297 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -345,6 +345,7 @@ SRC = \ insexpand.c \ json.c \ list.c \ + locale.c \ main.c \ map.c \ mark.c \ @@ -460,6 +461,7 @@ OBJ = \ insexpand.obj \ json.obj \ list.obj \ + locale.obj \ main.obj \ map.obj \ mark.obj \ @@ -865,6 +867,10 @@ list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ globals.h +locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \ + ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ + beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ + globals.h main.obj : main.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 \ |