comparison src/Make_vms.mms @ 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
306 306
307 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \ 307 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) 308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
309 309
310 SRC = arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c change.c charset.c \ 310 SRC = arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c change.c charset.c \
311 crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \ 311 cmdhist.c crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \
312 evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \ 312 evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
313 if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \ 313 if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \
314 hardcopy.c hashtab.c highlight.c indent.c insexpand.c json.c list.c \ 314 hardcopy.c hashtab.c highlight.c indent.c insexpand.c json.c list.c \
315 main.c map.c mark.c menu.c mbyte.c memfile.c memline.c message.c \ 315 main.c map.c mark.c menu.c mbyte.c memfile.c memline.c message.c \
316 misc1.c misc2.c move.c normal.c ops.c option.c popupmnu.c popupwin.c \ 316 misc1.c misc2.c move.c normal.c ops.c option.c popupmnu.c popupwin.c \
320 screen.c window.c os_unix.c os_vms.c pathdef.c \ 320 screen.c window.c os_unix.c os_vms.c pathdef.c \
321 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ 321 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
322 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) 322 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
323 323
324 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \ 324 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \
325 charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \ 325 charset.obj cmdhist.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \
326 digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \ 326 digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \
327 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \ 327 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
328 fileio.obj findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \ 328 fileio.obj findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
329 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \ 329 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
330 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \ 330 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
515 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ 515 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \
516 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 516 ascii.h keymap.h term.h macros.h structs.h regexp.h \
517 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 517 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
518 globals.h version.h 518 globals.h version.h
519 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ 519 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
520 ascii.h keymap.h term.h macros.h structs.h regexp.h \
521 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
522 globals.h
523 cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \
520 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 524 ascii.h keymap.h term.h macros.h structs.h regexp.h \
521 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 525 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
522 globals.h 526 globals.h
523 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ 527 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
524 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 528 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \