comparison src/Make_vms.mms @ 17873:d50a5faa75bd v8.1.1933

patch 8.1.1933: the eval.c file is too big Commit: https://github.com/vim/vim/commit/0522ba0359c96a8c2a4fc8fca0d3b58e49dda759 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 27 22:48:30 2019 +0200 patch 8.1.1933: the eval.c file is too big Problem: The eval.c file is too big. Solution: Move code related to variables to evalvars.c. (Yegappan Lakshmanan, closes #4868)
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Aug 2019 23:00:04 +0200
parents 0a5c615cd949
children 46f95606b9ec
comparison
equal deleted inserted replaced
17872:a4a0f826d4d7 17873:d50a5faa75bd
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 arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \ 310 SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \
311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \ 311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \
312 debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c ex_cmds.c \ 312 debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \
313 evalvars.c ex_cmds.c \
313 ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c \ 314 ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c \
314 fileio.c findfile.c fold.c getchar.c hardcopy.c hashtab.c highlight.c \ 315 fileio.c findfile.c fold.c getchar.c hardcopy.c hashtab.c highlight.c \
315 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \ 316 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
316 memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \ 317 memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \
317 option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \ 318 option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \
324 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) 325 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
325 326
326 OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \ 327 OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \
327 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \ 328 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \
328 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \ 329 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \
329 edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj ex_docmd.obj \ 330 edit.obj eval.obj evalfunc.obj evalvars.obj ex_cmds.obj ex_cmds2.obj \
331 ex_docmd.obj \
330 ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj fileio.obj \ 332 ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj fileio.obj \
331 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \ 333 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
332 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \ 334 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
333 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \ 335 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
334 misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \ 336 misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \
564 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ 566 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
565 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 567 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
566 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ 568 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
567 version.h 569 version.h
568 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ 570 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
571 ascii.h keymap.h term.h macros.h option.h structs.h \
572 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
573 proto.h globals.h version.h
574 evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \
569 ascii.h keymap.h term.h macros.h option.h structs.h \ 575 ascii.h keymap.h term.h macros.h option.h structs.h \
570 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ 576 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
571 proto.h globals.h version.h 577 proto.h globals.h version.h
572 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ 578 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
573 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 579 ascii.h keymap.h term.h macros.h structs.h regexp.h \