diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
commit | 46a426c9acfdd3d6c0fa134a17681634b9325bee (patch) | |
tree | 04524eaade951e753e388a890c287a4373683fb0 /src/Make_vms.mms | |
parent | d2842ea60bd608b7f9ec93c77d3f36a8e3bf5fe9 (diff) | |
download | vim-git-46a426c9acfdd3d6c0fa134a17681634b9325bee.tar.gz |
patch 8.1.2081: the spell.c file is too bigv8.1.2081
Problem: The spell.c file is too big.
Solution: Move the code for spell suggestions to a separate file. (Yegappan
Lakshmanan, closes #4988)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r-- | src/Make_vms.mms | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index b8e5085bb..3b45b7885 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -320,7 +320,8 @@ SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \ ops.c \ option.c optionstr.c popupmnu.c popupwin.c profiler.c quickfix.c \ regexp.c register.c scriptfile.c \ - search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \ + search.c session.c sha256.c sign.c spell.c spellfile.c spellsuggest.c \ + syntax.c tag.c \ term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \ userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \ pathdef.c \ @@ -342,7 +343,8 @@ OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \ optionstr.obj popupmnu.obj popupwin.obj profiler.obj quickfix.obj \ regexp.obj register.obj scriptfile.obj \ search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \ - syntax.obj tag.obj term.obj termlib.obj testing.obj textprop.obj \ + spellsuggest.obj syntax.obj tag.obj term.obj termlib.obj testing.obj \ + textprop.obj \ ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \ viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \ $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ @@ -791,6 +793,10 @@ spellfile.obj : spellfile.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 +spellsuggest.obj : spellsuggest.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 syntax.obj : syntax.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 \ |