comparison src/Make_vms.mms @ 21054:b1fac55cf8a3 v8.2.1078

patch 8.2.1078: highlight and match functionality together in one file Commit: https://github.com/vim/vim/commit/06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 28 13:17:26 2020 +0200 patch 8.2.1078: highlight and match functionality together in one file Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Jun 2020 13:30:04 +0200
parents 6c5b11458f31
children 5db63c2c6929
comparison
equal deleted inserted replaced
21053:c1f0a0815090 21054:b1fac55cf8a3
345 json.c \ 345 json.c \
346 list.c \ 346 list.c \
347 main.c \ 347 main.c \
348 map.c \ 348 map.c \
349 mark.c \ 349 mark.c \
350 match.c \
350 mbyte.c \ 351 mbyte.c \
351 memfile.c \ 352 memfile.c \
352 memline.c \ 353 memline.c \
353 menu.c \ 354 menu.c \
354 message.c \ 355 message.c \
458 json.obj \ 459 json.obj \
459 list.obj \ 460 list.obj \
460 main.obj \ 461 main.obj \
461 map.obj \ 462 map.obj \
462 mark.obj \ 463 mark.obj \
464 match.obj \
463 mbyte.obj \ 465 mbyte.obj \
464 memfile.obj \ 466 memfile.obj \
465 memline.obj \ 467 memline.obj \
466 menu.obj \ 468 menu.obj \
467 message.obj \ 469 message.obj \
865 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 867 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
866 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h 868 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
867 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ 869 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
868 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 870 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
869 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h 871 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
872 match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \
873 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
874 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
870 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ 875 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
871 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 876 ascii.h keymap.h term.h macros.h structs.h regexp.h \
872 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 877 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
873 globals.h 878 globals.h
874 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ 879 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \