comparison src/Makefile @ 17652:9efb4dda9720

patch 8.1.1823: command line history code is spread out commit https://github.com/vim/vim/commit/d7663c22c6c1ff0f86b81371586fbc851d3a3e9e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 6 21:59:57 2019 +0200 patch 8.1.1823: command line history code is spread out Problem: Command line history code is spread out. Solution: Put the code in a new file. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4779) Also graduate the +cmdline_hist feature.
author Bram Moolenaar <Bram@vim.org>
date Tue, 06 Aug 2019 22:00:08 +0200
parents 97a750e8707f
children 4a3dca734d36
comparison
equal deleted inserted replaced
17651:826360df7aff 17652:9efb4dda9720
1582 blob.c \ 1582 blob.c \
1583 blowfish.c \ 1583 blowfish.c \
1584 buffer.c \ 1584 buffer.c \
1585 change.c \ 1585 change.c \
1586 charset.c \ 1586 charset.c \
1587 cmdhist.c \
1587 crypt.c \ 1588 crypt.c \
1588 crypt_zip.c \ 1589 crypt_zip.c \
1589 debugger.c \ 1590 debugger.c \
1590 dict.c \ 1591 dict.c \
1591 diff.c \ 1592 diff.c \
1707 objects/beval.o \ 1708 objects/beval.o \
1708 objects/buffer.o \ 1709 objects/buffer.o \
1709 objects/change.o \ 1710 objects/change.o \
1710 objects/blob.o \ 1711 objects/blob.o \
1711 objects/blowfish.o \ 1712 objects/blowfish.o \
1713 objects/cmdhist.o \
1712 objects/crypt.o \ 1714 objects/crypt.o \
1713 objects/crypt_zip.o \ 1715 objects/crypt_zip.o \
1714 objects/debugger.o \ 1716 objects/debugger.o \
1715 objects/dict.o \ 1717 objects/dict.o \
1716 objects/diff.o \ 1718 objects/diff.o \
1845 autocmd.pro \ 1847 autocmd.pro \
1846 blowfish.pro \ 1848 blowfish.pro \
1847 buffer.pro \ 1849 buffer.pro \
1848 change.pro \ 1850 change.pro \
1849 charset.pro \ 1851 charset.pro \
1852 cmdhist.pro \
1850 crypt.pro \ 1853 crypt.pro \
1851 crypt_zip.pro \ 1854 crypt_zip.pro \
1852 debugger.pro \ 1855 debugger.pro \
1853 dict.pro \ 1856 dict.pro \
1854 diff.pro \ 1857 diff.pro \
3002 $(CCC) -o $@ change.c 3005 $(CCC) -o $@ change.c
3003 3006
3004 objects/charset.o: charset.c 3007 objects/charset.o: charset.c
3005 $(CCC) -o $@ charset.c 3008 $(CCC) -o $@ charset.c
3006 3009
3010 objects/cmdhist.o: cmdhist.c
3011 $(CCC) -o $@ cmdhist.c
3012
3007 objects/crypt.o: crypt.c 3013 objects/crypt.o: crypt.c
3008 $(CCC) -o $@ crypt.c 3014 $(CCC) -o $@ crypt.c
3009 3015
3010 objects/crypt_zip.o: crypt_zip.c 3016 objects/crypt_zip.o: crypt_zip.c
3011 $(CCC) -o $@ crypt_zip.c 3017 $(CCC) -o $@ crypt_zip.c
3493 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3499 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3494 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3500 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3495 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3501 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3496 proto.h globals.h version.h 3502 proto.h globals.h version.h
3497 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3503 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3504 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3505 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3506 proto.h globals.h
3507 objects/cmdhist.o: cmdhist.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3498 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3508 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3499 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3509 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3500 proto.h globals.h 3510 proto.h globals.h
3501 objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3511 objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3502 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3512 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \