comparison src/Makefile @ 17576:97a750e8707f v8.1.1785

patch 8.1.1785: map functionality mixed with character input commit https://github.com/vim/vim/commit/b66bab381c8ba71fd6e92327d1d34c6f8a65f2a7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 1 14:28:24 2019 +0200 patch 8.1.1785: map functionality mixed with character input Problem: Map functionality mixed with character input. Solution: Move the map functionality to a separate file. (Yegappan Lakshmanan, closes #4740) Graduate the +localmap feature.
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Aug 2019 14:30:07 +0200
parents c1629b49142c
children 9efb4dda9720
comparison
equal deleted inserted replaced
17575:b2a246caeb25 17576:97a750e8707f
1610 indent.c \ 1610 indent.c \
1611 insexpand.c \ 1611 insexpand.c \
1612 json.c \ 1612 json.c \
1613 list.c \ 1613 list.c \
1614 main.c \ 1614 main.c \
1615 map.c \
1615 mark.c \ 1616 mark.c \
1616 memfile.c \ 1617 memfile.c \
1617 memline.c \ 1618 memline.c \
1618 menu.c \ 1619 menu.c \
1619 message.c \ 1620 message.c \
1733 objects/if_cscope.o \ 1734 objects/if_cscope.o \
1734 objects/if_xcmdsrv.o \ 1735 objects/if_xcmdsrv.o \
1735 objects/indent.o \ 1736 objects/indent.o \
1736 objects/insexpand.o \ 1737 objects/insexpand.o \
1737 objects/list.o \ 1738 objects/list.o \
1739 objects/map.o \
1738 objects/mark.o \ 1740 objects/mark.o \
1739 objects/memline.o \ 1741 objects/memline.o \
1740 objects/menu.o \ 1742 objects/menu.o \
1741 objects/misc1.o \ 1743 objects/misc1.o \
1742 objects/misc2.o \ 1744 objects/misc2.o \
1877 indent.pro \ 1879 indent.pro \
1878 insexpand.pro \ 1880 insexpand.pro \
1879 json.pro \ 1881 json.pro \
1880 list.pro \ 1882 list.pro \
1881 main.pro \ 1883 main.pro \
1884 map.pro \
1882 mark.pro \ 1885 mark.pro \
1883 mbyte.pro \ 1886 mbyte.pro \
1884 memfile.pro \ 1887 memfile.pro \
1885 memline.pro \ 1888 memline.pro \
1886 menu.pro \ 1889 menu.pro \
3167 $(CCC) -o $@ list.c 3170 $(CCC) -o $@ list.c
3168 3171
3169 objects/main.o: main.c 3172 objects/main.o: main.c
3170 $(CCC) -o $@ main.c 3173 $(CCC) -o $@ main.c
3171 3174
3175 objects/map.o: map.c
3176 $(CCC) -o $@ map.c
3177
3172 objects/mark.o: mark.c 3178 objects/mark.o: mark.c
3173 $(CCC) -o $@ mark.c 3179 $(CCC) -o $@ mark.c
3174 3180
3175 objects/memfile.o: memfile.c 3181 objects/memfile.o: memfile.c
3176 $(CCC) -o $@ memfile.c 3182 $(CCC) -o $@ memfile.c
3599 objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3605 objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3600 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3606 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3601 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3607 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3602 proto.h globals.h 3608 proto.h globals.h
3603 objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3609 objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3610 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3611 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3612 proto.h globals.h
3613 objects/map.o: map.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3604 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3614 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3605 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3615 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3606 proto.h globals.h 3616 proto.h globals.h
3607 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3617 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3608 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3618 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \