comparison src/Make_vms.mms @ 18172:6e53d83e021d v8.1.2081

patch 8.1.2081: the spell.c file is too big Commit: https://github.com/vim/vim/commit/46a426c9acfdd3d6c0fa134a17681634b9325bee Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 12:41:56 2019 +0200 patch 8.1.2081: the spell.c file is too big Problem: The spell.c file is too big. Solution: Move the code for spell suggestions to a separate file. (Yegappan Lakshmanan, closes #4988)
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 12:45:08 +0200
parents f57481564f2c
children 1ec6539cef68
comparison
equal deleted inserted replaced
18171:b6145168fb4b 18172:6e53d83e021d
318 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \ 318 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
319 memfile.c memline.c message.c misc1.c misc2.c mouse.c move.c normal.c \ 319 memfile.c memline.c message.c misc1.c misc2.c mouse.c move.c normal.c \
320 ops.c \ 320 ops.c \
321 option.c optionstr.c popupmnu.c popupwin.c profiler.c quickfix.c \ 321 option.c optionstr.c popupmnu.c popupwin.c profiler.c quickfix.c \
322 regexp.c register.c scriptfile.c \ 322 regexp.c register.c scriptfile.c \
323 search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \ 323 search.c session.c sha256.c sign.c spell.c spellfile.c spellsuggest.c \
324 syntax.c tag.c \
324 term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \ 325 term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \
325 userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \ 326 userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \
326 pathdef.c \ 327 pathdef.c \
327 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ 328 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
328 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) 329 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
340 misc1.obj misc2.obj mouse.obj move.obj mbyte.obj normal.obj ops.obj \ 341 misc1.obj misc2.obj mouse.obj move.obj mbyte.obj normal.obj ops.obj \
341 option.obj \ 342 option.obj \
342 optionstr.obj popupmnu.obj popupwin.obj profiler.obj quickfix.obj \ 343 optionstr.obj popupmnu.obj popupwin.obj profiler.obj quickfix.obj \
343 regexp.obj register.obj scriptfile.obj \ 344 regexp.obj register.obj scriptfile.obj \
344 search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \ 345 search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \
345 syntax.obj tag.obj term.obj termlib.obj testing.obj textprop.obj \ 346 spellsuggest.obj syntax.obj tag.obj term.obj termlib.obj testing.obj \
347 textprop.obj \
346 ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \ 348 ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \
347 viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \ 349 viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \
348 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ 350 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
349 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ) 351 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
350 352
789 globals.h 791 globals.h
790 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ 792 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
791 ascii.h keymap.h term.h macros.h option.h structs.h \ 793 ascii.h keymap.h term.h macros.h option.h structs.h \
792 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ 794 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
793 proto.h globals.h 795 proto.h globals.h
796 spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \
797 ascii.h keymap.h term.h macros.h option.h structs.h \
798 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
799 proto.h globals.h
794 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ 800 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
795 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 801 ascii.h keymap.h term.h macros.h structs.h regexp.h \
796 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 802 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
797 globals.h 803 globals.h
798 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ 804 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \