diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-12 22:26:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-12 22:26:43 +0200 |
commit | 0eddca40a6d878823fc90b0cd25d5d101506c564 (patch) | |
tree | 70e556bfeb9287bb66e9a39e3ec053f96fa561cb /src/Make_vms.mms | |
parent | 8fe1000e9c3438d0ff36cf2340f0f0e48f8fb89f (diff) | |
download | vim-git-0eddca40a6d878823fc90b0cd25d5d101506c564.tar.gz |
patch 8.1.2022: the option.c file is too bigv8.1.2022
Problem: The option.c file is too big.
Solution: Move option definitions to a separate file. (Yegappan Lakshmanan,
closes #4918)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r-- | src/Make_vms.mms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index 607f56435..c3b795820 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -714,7 +714,7 @@ ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ option.obj : option.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 + globals.h optiondefs.h os_unix.obj : os_unix.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 \ |