comparison src/Makefile @ 26063:597271fb4bfa v8.2.3565

patch 8.2.3565: Makefile dependencies are outdated Commit: https://github.com/vim/vim/commit/2446ec9b567ce2b72bd06d121f200f40bbdc8a84 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 26 12:00:01 2021 +0100 patch 8.2.3565: Makefile dependencies are outdated Problem: Makefile dependencies are outdated. (Gary Johnson) Solution: Run "make depend" and add missing dependencies.
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Oct 2021 13:15:04 +0200
parents 92c424550367
children 13e09dc59f0f
comparison
equal deleted inserted replaced
26062:b4ffbed12ddd 26063:597271fb4bfa
397 #CONF_OPT_FAIL = --enable-fail-if-missing 397 #CONF_OPT_FAIL = --enable-fail-if-missing
398 398
399 # LUA 399 # LUA
400 # Uncomment one of these when you want to include the Lua interface. 400 # Uncomment one of these when you want to include the Lua interface.
401 # First one is for static linking, second one for dynamic loading. 401 # First one is for static linking, second one for dynamic loading.
402 # Debian package is "lua5.3" and "liblua5.3-dev" or "lua5.4" and
403 # "liblua5.4-dev".
402 # Use --with-luajit if you want to use LuaJIT instead of Lua. 404 # Use --with-luajit if you want to use LuaJIT instead of Lua.
403 # Set PATH environment variable to find lua or luajit executable. 405 # Set PATH environment variable to find lua or luajit executable.
404 # This requires at least "normal" features, "tiny" and "small" don't work. 406 # This requires at least "normal" features, "tiny" and "small" don't work.
405 #CONF_OPT_LUA = --enable-luainterp 407 #CONF_OPT_LUA = --enable-luainterp
406 #CONF_OPT_LUA = --enable-luainterp=dynamic 408 #CONF_OPT_LUA = --enable-luainterp=dynamic
421 #CONF_OPT_PLTHOME = --with-plthome=/home/me/mz 423 #CONF_OPT_PLTHOME = --with-plthome=/home/me/mz
422 424
423 # PERL 425 # PERL
424 # Uncomment one of these when you want to include the Perl interface. 426 # Uncomment one of these when you want to include the Perl interface.
425 # First one is for static linking, second one for dynamic loading. 427 # First one is for static linking, second one for dynamic loading.
428 # Debian package is "libperl-dev"
426 # The Perl option sometimes causes problems, because it adds extra flags 429 # The Perl option sometimes causes problems, because it adds extra flags
427 #
428 # to the command line. If you see strange flags during compilation, check in 430 # to the command line. If you see strange flags during compilation, check in
429 # auto/config.mk where they come from. If it's PERL_CFLAGS, try commenting 431 # auto/config.mk where they come from. If it's PERL_CFLAGS, try commenting
430 # the next line. 432 # the next line.
431 # When you get an error for a missing "perl.exp" file, try creating an empty 433 # When you get an error for a missing "perl.exp" file, try creating an empty
432 # one: "touch perl.exp". 434 # one: "touch perl.exp".
434 #CONF_OPT_PERL = --enable-perlinterp 436 #CONF_OPT_PERL = --enable-perlinterp
435 #CONF_OPT_PERL = --enable-perlinterp=dynamic 437 #CONF_OPT_PERL = --enable-perlinterp=dynamic
436 438
437 # PYTHON 439 # PYTHON
438 # Uncomment lines here when you want to include the Python interface. 440 # Uncomment lines here when you want to include the Python interface.
441 # Debian package is "libpython3-dev".
439 # This requires at least "normal" features, "tiny" and "small" don't work. 442 # This requires at least "normal" features, "tiny" and "small" don't work.
440 # Python 3 is preferred, Python 2 (often referred to as "Python") has been 443 # Python 3 is preferred, Python 2 (often referred to as "Python") has been
441 # deprecated for a long time. 444 # deprecated for a long time.
442 # NOTE: This may cause threading to be enabled, which has side effects (such 445 # NOTE: This may cause threading to be enabled, which has side effects (such
443 # as using different libraries and debugging becomes more difficult). 446 # as using different libraries and debugging becomes more difficult).
455 #CONF_OPT_PYTHON3 = --enable-python3interp=dynamic 458 #CONF_OPT_PYTHON3 = --enable-python3interp=dynamic
456 459
457 # RUBY 460 # RUBY
458 # Uncomment this when you want to include the Ruby interface. 461 # Uncomment this when you want to include the Ruby interface.
459 # First one for static linking, second one for loading when used. 462 # First one for static linking, second one for loading when used.
460 # Note: you need the development package (e.g., ruby1.9.1-dev on Ubuntu). 463 # Debian package is "ruby-dev".
461 # This requires at least "normal" features, "tiny" and "small" don't work. 464 # This requires at least "normal" features, "tiny" and "small" don't work.
462 #CONF_OPT_RUBY = --enable-rubyinterp 465 #CONF_OPT_RUBY = --enable-rubyinterp
463 #CONF_OPT_RUBY = --enable-rubyinterp=dynamic 466 #CONF_OPT_RUBY = --enable-rubyinterp=dynamic
464 #CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1 467 #CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1
465 468
466 # TCL 469 # TCL
467 # Uncomment this when you want to include the Tcl interface. 470 # Uncomment this when you want to include the Tcl interface.
468 # First one is for static linking, second one for dynamic loading. 471 # First one is for static linking, second one for dynamic loading.
472 # Debian package is "tcl-dev".
469 #CONF_OPT_TCL = --enable-tclinterp 473 #CONF_OPT_TCL = --enable-tclinterp
470 #CONF_OPT_TCL = --enable-tclinterp=dynamic 474 #CONF_OPT_TCL = --enable-tclinterp=dynamic
471 #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4 475 #CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4
472 476
473 # CSCOPE 477 # CSCOPE
728 732
729 # Uncomment this line to have Vim call abort() when an internal error is 733 # Uncomment this line to have Vim call abort() when an internal error is
730 # detected. Useful when using a tool to find errors. 734 # detected. Useful when using a tool to find errors.
731 #ABORT_CFLAGS = -DABORT_ON_INTERNAL_ERROR 735 #ABORT_CFLAGS = -DABORT_ON_INTERNAL_ERROR
732 736
733 ##################################################### 737 ####################################################
734 ### Specific systems, check if yours is listed! ### {{{ 738 ### Specific systems, check if yours is listed ### {{{
735 ##################################################### 739 ####################################################
736 740
737 ### Uncomment things here only if the values chosen by configure are wrong. 741 ### Uncomment things here only if the values chosen by configure are wrong.
738 ### It's better to adjust configure.ac and "make autoconf", if you can! 742 ### It's better to adjust configure.ac and "make autoconf", if you can!
739 ### Then send the required changes to configure.ac to the bugs list. 743 ### Then send the required changes to configure.ac to the bugs list.
740 744
3129 auto/gui_gtk_gresources.h: gui_gtk_res.xml $(GUI_GTK_RES_INPUTS) 3133 auto/gui_gtk_gresources.h: gui_gtk_res.xml $(GUI_GTK_RES_INPUTS)
3130 if test -z "$(GLIB_COMPILE_RESOURCES)"; then touch $@; else \ 3134 if test -z "$(GLIB_COMPILE_RESOURCES)"; then touch $@; else \
3131 $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml; \ 3135 $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml; \
3132 fi 3136 fi
3133 3137
3138 # Dependencies through vim.h that most targets depend on. Used by targets
3139 # that are not taken care of by "make depend".
3140 VIM_H_DEPENDENCIES = \
3141 vim.h protodef.h auto/config.h feature.h os_unix.h \
3142 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3143 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3144 proto.h globals.h errors.h
3145
3134 # All the object files are put in the "objects" directory. Since not all make 3146 # All the object files are put in the "objects" directory. Since not all make
3135 # commands understand putting object files in another directory, it must be 3147 # commands understand putting object files in another directory, it must be
3136 # specified for each file separately. 3148 # specified for each file separately.
3137 3149
3138 objects: objects/.dirstamp 3150 objects: objects/.dirstamp
3441 $(CCC_NF) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS) $(ALL_CFLAGS) -o $@ option.c 3453 $(CCC_NF) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS) $(ALL_CFLAGS) -o $@ option.c
3442 3454
3443 objects/optionstr.o: optionstr.c 3455 objects/optionstr.o: optionstr.c
3444 $(CCC_NF) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS) $(ALL_CFLAGS) -o $@ optionstr.c 3456 $(CCC_NF) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS) $(ALL_CFLAGS) -o $@ optionstr.c
3445 3457
3446 objects/os_qnx.o: os_qnx.c 3458 objects/os_qnx.o: os_qnx.c $(VIM_H_DEPENDENCIES)
3447 $(CCC) -o $@ os_qnx.c 3459 $(CCC) -o $@ os_qnx.c
3448 3460
3449 objects/os_haiku.rsrc: auto/os_haiku.rdef 3461 objects/os_haiku.rsrc: auto/os_haiku.rdef
3450 cat $< | $(CCC) -E - | grep -v '^#' | rc -o "$@" - 3462 cat $< | $(CCC) -E - | grep -v '^#' | rc -o "$@" -
3451 3463
3452 objects/os_macosx.o: os_macosx.m 3464 objects/os_macosx.o: os_macosx.m
3453 $(CCC) -o $@ os_macosx.m 3465 $(CCC) -o $@ os_macosx.m
3454 3466
3455 objects/os_mac_conv.o: os_mac_conv.c 3467 objects/os_mac_conv.o: os_mac_conv.c $(VIM_H_DEPENDENCIES)
3456 $(CCC) -o $@ os_mac_conv.c 3468 $(CCC) -o $@ os_mac_conv.c
3457 3469
3458 objects/os_unix.o: os_unix.c 3470 objects/os_unix.o: os_unix.c
3459 $(CCC) -o $@ os_unix.c 3471 $(CCC) -o $@ os_unix.c
3460 3472
3461 objects/os_mswin.o: os_mswin.c 3473 objects/os_mswin.o: os_mswin.c $(VIM_H_DEPENDENCIES)
3462 $(CCC) -o $@ os_mswin.c 3474 $(CCC) -o $@ os_mswin.c
3463 3475
3464 objects/winclip.o: winclip.c 3476 objects/winclip.o: winclip.c $(VIM_H_DEPENDENCIES)
3465 $(CCC) -o $@ winclip.c 3477 $(CCC) -o $@ winclip.c
3466 3478
3467 objects/pathdef.o: auto/pathdef.c 3479 objects/pathdef.o: auto/pathdef.c
3468 $(CCC) -o $@ auto/pathdef.c 3480 $(CCC) -o $@ auto/pathdef.c
3469 3481
3709 ### (automatically generated by 'make depend') 3721 ### (automatically generated by 'make depend')
3710 ### Dependencies: 3722 ### Dependencies:
3711 objects/alloc.o: alloc.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3723 objects/alloc.o: alloc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3712 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3724 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3713 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3725 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3714 proto.h errors.h globals.h 3726 proto.h globals.h errors.h
3715 objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3727 objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3716 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3728 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3717 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3729 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3718 proto.h errors.h globals.h 3730 proto.h globals.h errors.h
3719 objects/arglist.o: arglist.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3731 objects/arglist.o: arglist.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3720 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3732 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3721 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3733 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3722 proto.h errors.h globals.h 3734 proto.h globals.h errors.h
3723 objects/autocmd.o: autocmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3735 objects/autocmd.o: autocmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3724 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3736 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3725 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3737 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3726 proto.h errors.h globals.h 3738 proto.h globals.h errors.h
3727 objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3739 objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3728 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3740 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3729 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3741 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3730 proto.h errors.h globals.h 3742 proto.h globals.h errors.h
3731 objects/blob.o: blob.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3743 objects/blob.o: blob.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3732 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3744 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3733 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3745 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3734 proto.h errors.h globals.h 3746 proto.h globals.h errors.h
3735 objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3747 objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3736 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3748 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3737 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3749 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3738 proto.h errors.h globals.h 3750 proto.h globals.h errors.h
3739 objects/buffer.o: buffer.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3751 objects/buffer.o: buffer.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3740 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3752 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3741 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3753 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3742 proto.h errors.h globals.h version.h 3754 proto.h globals.h errors.h version.h
3743 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3755 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3744 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3756 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3745 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3757 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3746 proto.h errors.h globals.h 3758 proto.h globals.h errors.h
3747 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3759 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3748 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3760 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3749 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3761 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3750 proto.h errors.h globals.h 3762 proto.h globals.h errors.h
3751 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3763 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3752 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3764 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3753 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3765 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3754 proto.h errors.h globals.h 3766 proto.h globals.h errors.h
3755 objects/clientserver.o: clientserver.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3767 objects/clientserver.o: clientserver.c vim.h protodef.h auto/config.h feature.h \
3756 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3768 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3757 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3769 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3758 proto.h errors.h globals.h 3770 proto.h globals.h errors.h
3759 objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3771 objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h \
3760 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3772 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3761 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3773 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3762 proto.h errors.h globals.h 3774 proto.h globals.h errors.h
3763 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h \ 3775 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h \
3764 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3776 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3765 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3777 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3766 proto.h errors.h globals.h 3778 proto.h globals.h errors.h
3767 objects/cmdhist.o: cmdhist.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3779 objects/cmdhist.o: cmdhist.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3768 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3780 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3769 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3781 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3770 proto.h errors.h globals.h 3782 proto.h globals.h errors.h
3771 objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3783 objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3772 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3784 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3773 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3785 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3774 proto.h errors.h globals.h 3786 proto.h globals.h errors.h
3775 objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \ 3787 objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \
3776 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3788 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3777 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3789 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3778 proto.h errors.h globals.h 3790 proto.h globals.h errors.h
3779 objects/debugger.o: debugger.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3791 objects/debugger.o: debugger.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3780 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3792 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3781 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3793 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3782 proto.h errors.h globals.h 3794 proto.h globals.h errors.h
3783 objects/dict.o: dict.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3795 objects/dict.o: dict.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3784 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3796 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3785 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3797 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3786 proto.h errors.h globals.h 3798 proto.h globals.h errors.h
3787 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3799 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3788 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3800 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3789 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3801 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3790 proto.h errors.h globals.h xdiff/xdiff.h xdiff/../vim.h 3802 proto.h globals.h errors.h xdiff/xdiff.h xdiff/../vim.h
3791 objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3803 objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3792 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3804 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3793 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3805 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3794 proto.h errors.h globals.h 3806 proto.h globals.h errors.h
3795 objects/drawline.o: drawline.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3807 objects/drawline.o: drawline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3796 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3808 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3797 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3809 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3798 proto.h errors.h globals.h 3810 proto.h globals.h errors.h
3799 objects/drawscreen.o: drawscreen.c vim.h protodef.h auto/config.h feature.h \ 3811 objects/drawscreen.o: drawscreen.c vim.h protodef.h auto/config.h feature.h \
3800 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3812 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3801 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3813 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3802 proto.h errors.h globals.h 3814 proto.h globals.h errors.h
3803 objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3815 objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3804 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3816 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3805 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3817 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3806 proto.h errors.h globals.h 3818 proto.h globals.h errors.h
3807 objects/eval.o: eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3819 objects/eval.o: eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3808 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3820 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3809 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3821 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3810 proto.h errors.h globals.h 3822 proto.h globals.h errors.h
3811 objects/evalbuffer.o: evalbuffer.c vim.h protodef.h auto/config.h feature.h \ 3823 objects/evalbuffer.o: evalbuffer.c vim.h protodef.h auto/config.h feature.h \
3812 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3824 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3813 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3825 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3814 proto.h errors.h globals.h 3826 proto.h globals.h errors.h
3815 objects/evalfunc.o: evalfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3827 objects/evalfunc.o: evalfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3816 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3828 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3817 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3829 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3818 proto.h errors.h globals.h version.h 3830 proto.h globals.h errors.h version.h
3819 objects/evalvars.o: evalvars.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3831 objects/evalvars.o: evalvars.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3820 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3832 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3821 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3833 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3822 proto.h errors.h globals.h version.h 3834 proto.h globals.h errors.h version.h
3823 objects/evalwindow.o: evalwindow.c vim.h protodef.h auto/config.h feature.h \ 3835 objects/evalwindow.o: evalwindow.c vim.h protodef.h auto/config.h feature.h \
3824 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3836 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3825 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3837 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3826 proto.h errors.h globals.h 3838 proto.h globals.h errors.h
3827 objects/ex_cmds.o: ex_cmds.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3839 objects/ex_cmds.o: ex_cmds.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3828 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3840 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3829 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3841 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3830 proto.h errors.h globals.h version.h 3842 proto.h globals.h errors.h version.h
3831 objects/ex_cmds2.o: ex_cmds2.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3843 objects/ex_cmds2.o: ex_cmds2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3832 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3844 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3833 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3845 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3834 proto.h errors.h globals.h version.h 3846 proto.h globals.h errors.h version.h
3835 objects/ex_docmd.o: ex_docmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3847 objects/ex_docmd.o: ex_docmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3836 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3848 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3837 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3849 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3838 proto.h errors.h globals.h ex_cmdidxs.h 3850 proto.h globals.h errors.h ex_cmdidxs.h
3839 objects/ex_eval.o: ex_eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3851 objects/ex_eval.o: ex_eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3840 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3852 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3841 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3853 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3842 proto.h errors.h globals.h 3854 proto.h globals.h errors.h
3843 objects/ex_getln.o: ex_getln.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3855 objects/ex_getln.o: ex_getln.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3844 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3856 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3845 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3857 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3846 proto.h errors.h globals.h 3858 proto.h globals.h errors.h
3847 objects/fileio.o: fileio.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3859 objects/fileio.o: fileio.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3848 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3860 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3849 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3861 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3850 proto.h errors.h globals.h 3862 proto.h globals.h errors.h
3851 objects/filepath.o: filepath.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3863 objects/filepath.o: filepath.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3852 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3864 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3853 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3865 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3854 proto.h errors.h globals.h 3866 proto.h globals.h errors.h
3855 objects/findfile.o: findfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3867 objects/findfile.o: findfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3856 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3868 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3857 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3869 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3858 proto.h errors.h globals.h 3870 proto.h globals.h errors.h
3859 objects/float.o: float.c vim.h protodef.h auto/config.h feature.h \ 3871 objects/float.o: float.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3860 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3872 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3861 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3873 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3862 proto.h errors.h globals.h 3874 proto.h globals.h errors.h
3863 objects/fold.o: fold.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3875 objects/fold.o: fold.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3864 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3876 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3865 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3877 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3866 proto.h errors.h globals.h 3878 proto.h globals.h errors.h
3867 objects/getchar.o: getchar.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3879 objects/getchar.o: getchar.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3868 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3880 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3869 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3881 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3870 proto.h errors.h globals.h 3882 proto.h globals.h errors.h
3883 objects/gui_xim.o: gui_xim.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3884 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3885 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3886 proto.h globals.h errors.h
3871 objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3887 objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3872 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3888 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3873 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3889 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3874 proto.h errors.h globals.h version.h 3890 proto.h globals.h errors.h version.h
3875 objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3891 objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3876 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3892 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3877 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3893 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3878 proto.h errors.h globals.h 3894 proto.h globals.h errors.h
3879 objects/help.o: help.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3895 objects/help.o: help.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3880 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3896 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3881 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3897 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3882 proto.h errors.h globals.h 3898 proto.h globals.h errors.h
3883 objects/highlight.o: highlight.c vim.h protodef.h auto/config.h feature.h \ 3899 objects/highlight.o: highlight.c vim.h protodef.h auto/config.h feature.h \
3884 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3900 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3885 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3901 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3886 proto.h errors.h globals.h 3902 proto.h globals.h errors.h
3887 objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \ 3903 objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \
3888 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3904 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3889 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3905 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3890 proto.h errors.h globals.h if_cscope.h 3906 proto.h globals.h errors.h if_cscope.h
3891 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h protodef.h auto/config.h feature.h \ 3907 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h protodef.h auto/config.h feature.h \
3892 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3908 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3893 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3909 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3894 proto.h errors.h globals.h version.h 3910 proto.h globals.h errors.h version.h
3895 objects/indent.o: indent.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3911 objects/indent.o: indent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3896 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3912 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3897 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3913 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3898 proto.h errors.h globals.h 3914 proto.h globals.h errors.h
3899 objects/insexpand.o: insexpand.c vim.h protodef.h auto/config.h feature.h \ 3915 objects/insexpand.o: insexpand.c vim.h protodef.h auto/config.h feature.h \
3900 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3916 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3901 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3917 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3902 proto.h errors.h globals.h 3918 proto.h globals.h errors.h
3903 objects/json.o: json.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3919 objects/json.o: json.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3904 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3920 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3905 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3921 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3906 proto.h errors.h globals.h 3922 proto.h globals.h errors.h
3907 objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3923 objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3908 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3924 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3909 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3925 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3910 proto.h errors.h globals.h 3926 proto.h globals.h errors.h
3911 objects/locale.o: locale.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3927 objects/locale.o: locale.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3912 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3928 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3913 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3929 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3914 proto.h errors.h globals.h 3930 proto.h globals.h errors.h
3915 objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3931 objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3916 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3932 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3917 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3933 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3918 proto.h errors.h globals.h 3934 proto.h globals.h errors.h
3919 objects/map.o: map.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3935 objects/map.o: map.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3920 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3936 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3921 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3937 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3922 proto.h errors.h globals.h 3938 proto.h globals.h errors.h
3923 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3939 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3924 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3940 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3925 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3941 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3926 proto.h errors.h globals.h 3942 proto.h globals.h errors.h
3927 objects/match.o: match.c vim.h protodef.h auto/config.h feature.h \ 3943 objects/match.o: match.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3928 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3944 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3929 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3945 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3930 proto.h errors.h globals.h 3946 proto.h globals.h errors.h
3931 objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3947 objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3932 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3948 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3933 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3949 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3934 proto.h errors.h globals.h 3950 proto.h globals.h errors.h
3935 objects/memfile.o: memfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3951 objects/memfile.o: memfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3936 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3952 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3937 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3953 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3938 proto.h errors.h globals.h 3954 proto.h globals.h errors.h
3939 objects/memline.o: memline.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3955 objects/memline.o: memline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3940 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3956 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3941 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3957 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3942 proto.h errors.h globals.h 3958 proto.h globals.h errors.h
3943 objects/menu.o: menu.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3959 objects/menu.o: menu.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3944 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3960 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3945 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3961 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3946 proto.h errors.h globals.h 3962 proto.h globals.h errors.h
3947 objects/message.o: message.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3963 objects/message.o: message.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3948 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3964 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3949 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3965 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3950 proto.h errors.h globals.h 3966 proto.h globals.h errors.h
3951 objects/misc1.o: misc1.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3967 objects/misc1.o: misc1.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3952 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3968 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3953 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3969 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3954 proto.h errors.h globals.h version.h 3970 proto.h globals.h errors.h version.h
3955 objects/misc2.o: misc2.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3971 objects/misc2.o: misc2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3956 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3972 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3957 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3973 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3958 proto.h errors.h globals.h 3974 proto.h globals.h errors.h
3959 objects/mouse.o: mouse.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3975 objects/mouse.o: mouse.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3960 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3976 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3961 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3977 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3962 proto.h errors.h globals.h 3978 proto.h globals.h errors.h
3963 objects/move.o: move.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3979 objects/move.o: move.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3964 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3980 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3965 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3981 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3966 proto.h errors.h globals.h 3982 proto.h globals.h errors.h
3967 objects/normal.o: normal.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3983 objects/normal.o: normal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3968 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3984 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3969 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3985 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3970 proto.h errors.h globals.h 3986 proto.h globals.h errors.h
3971 objects/ops.o: ops.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3987 objects/ops.o: ops.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3972 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3988 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3973 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3989 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3974 proto.h errors.h globals.h 3990 proto.h globals.h errors.h
3975 objects/option.o: option.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3991 objects/option.o: option.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3976 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3992 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3977 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3993 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3978 proto.h errors.h globals.h optiondefs.h 3994 proto.h globals.h errors.h optiondefs.h
3979 objects/optionstr.o: optionstr.c vim.h protodef.h auto/config.h feature.h \ 3995 objects/optionstr.o: optionstr.c vim.h protodef.h auto/config.h feature.h \
3980 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3996 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3981 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3997 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3982 proto.h errors.h globals.h 3998 proto.h globals.h errors.h
3983 objects/os_unix.o: os_unix.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3999 objects/os_unix.o: os_unix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3984 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4000 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3985 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4001 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3986 proto.h errors.h globals.h os_unixx.h 4002 proto.h globals.h errors.h os_unixx.h
3987 objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \ 4003 objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \
3988 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4004 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3989 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4005 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3990 proto.h errors.h globals.h 4006 proto.h globals.h errors.h
3991 objects/popupmenu.o: popupmenu.c vim.h protodef.h auto/config.h feature.h \ 4007 objects/popupmenu.o: popupmenu.c vim.h protodef.h auto/config.h feature.h \
3992 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4008 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3993 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4009 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3994 proto.h errors.h globals.h 4010 proto.h globals.h errors.h
3995 objects/popupwin.o: popupwin.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4011 objects/popupwin.o: popupwin.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3996 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4012 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3997 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4013 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3998 proto.h errors.h globals.h 4014 proto.h globals.h errors.h
3999 objects/profiler.o: profiler.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4015 objects/profiler.o: profiler.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4000 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4016 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4001 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4017 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4002 proto.h errors.h globals.h 4018 proto.h globals.h errors.h
4003 objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4019 objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4004 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4020 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4005 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4021 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4006 proto.h errors.h globals.h 4022 proto.h globals.h errors.h
4007 objects/quickfix.o: quickfix.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4023 objects/quickfix.o: quickfix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4008 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4024 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4009 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4025 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4010 proto.h errors.h globals.h 4026 proto.h globals.h errors.h
4011 objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4027 objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4012 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4028 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4013 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4029 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4014 proto.h errors.h globals.h regexp_bt.c regexp_nfa.c 4030 proto.h globals.h errors.h regexp_bt.c regexp_nfa.c
4015 objects/register.o: register.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4031 objects/register.o: register.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4016 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4032 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4017 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4033 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4018 proto.h errors.h globals.h 4034 proto.h globals.h errors.h
4019 objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4035 objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4020 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4036 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4021 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4037 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4022 proto.h errors.h globals.h 4038 proto.h globals.h errors.h
4023 objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h \ 4039 objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h \
4024 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4040 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4025 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4041 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4026 proto.h errors.h globals.h 4042 proto.h globals.h errors.h
4027 objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4043 objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4028 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4044 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4029 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4045 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4030 proto.h errors.h globals.h 4046 proto.h globals.h errors.h
4031 objects/session.o: session.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4047 objects/session.o: session.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4032 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4048 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4033 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4049 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4034 proto.h errors.h globals.h 4050 proto.h globals.h errors.h
4035 objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4051 objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4036 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4052 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4037 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4053 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4038 proto.h errors.h globals.h 4054 proto.h globals.h errors.h
4039 objects/sign.o: sign.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4055 objects/sign.o: sign.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4040 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4056 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4041 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4057 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4042 proto.h errors.h globals.h 4058 proto.h globals.h errors.h
4043 objects/sound.o: sound.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4059 objects/sound.o: sound.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4044 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4060 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4045 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4061 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4046 proto.h errors.h globals.h 4062 proto.h globals.h errors.h
4047 objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4063 objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4048 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4064 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4049 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4065 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4050 proto.h errors.h globals.h 4066 proto.h globals.h errors.h
4051 objects/spellfile.o: spellfile.c vim.h protodef.h auto/config.h feature.h \ 4067 objects/spellfile.o: spellfile.c vim.h protodef.h auto/config.h feature.h \
4052 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4068 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4053 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4069 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4054 proto.h errors.h globals.h 4070 proto.h globals.h errors.h
4055 objects/spellsuggest.o: spellsuggest.c vim.h protodef.h auto/config.h feature.h \ 4071 objects/spellsuggest.o: spellsuggest.c vim.h protodef.h auto/config.h feature.h \
4056 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4072 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4057 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4073 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4058 proto.h errors.h globals.h 4074 proto.h globals.h errors.h
4059 objects/strings.o: strings.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4075 objects/strings.o: strings.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4060 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4076 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4061 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4077 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4062 proto.h errors.h globals.h 4078 proto.h globals.h errors.h
4063 objects/syntax.o: syntax.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4079 objects/syntax.o: syntax.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4064 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4080 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4065 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4081 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4066 proto.h errors.h globals.h 4082 proto.h globals.h errors.h
4067 objects/tag.o: tag.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4083 objects/tag.o: tag.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4068 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4084 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4069 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4085 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4070 proto.h errors.h globals.h 4086 proto.h globals.h errors.h
4071 objects/term.o: term.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4087 objects/term.o: term.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4072 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4088 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4073 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4089 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4074 proto.h errors.h globals.h libvterm/include/vterm.h \ 4090 proto.h globals.h errors.h
4075 libvterm/include/vterm_keycodes.h
4076 objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4091 objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4077 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4092 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4078 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4093 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4079 proto.h errors.h globals.h libvterm/include/vterm.h \ 4094 proto.h globals.h errors.h libvterm/include/vterm.h \
4080 libvterm/include/vterm_keycodes.h 4095 libvterm/include/vterm_keycodes.h
4081 objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4096 objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4082 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4097 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4083 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4098 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4084 proto.h errors.h globals.h 4099 proto.h globals.h errors.h
4085 objects/textformat.o: textformat.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4100 objects/textformat.o: textformat.c vim.h protodef.h auto/config.h feature.h \
4086 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4101 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4087 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4102 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4088 proto.h errors.h globals.h 4103 proto.h globals.h errors.h
4089 objects/textobject.o: textobject.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4104 objects/textobject.o: textobject.c vim.h protodef.h auto/config.h feature.h \
4090 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4105 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4091 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4106 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4092 proto.h errors.h globals.h 4107 proto.h globals.h errors.h
4093 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4108 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4094 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4109 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4095 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4110 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4096 proto.h errors.h globals.h 4111 proto.h globals.h errors.h
4097 objects/time.o: time.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4112 objects/time.o: time.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4098 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4113 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4099 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4114 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4100 proto.h errors.h globals.h 4115 proto.h globals.h errors.h
4101 objects/typval.o: typval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4116 objects/typval.o: typval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4102 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4117 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4103 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4118 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4104 proto.h errors.h globals.h 4119 proto.h globals.h errors.h
4105 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4120 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4106 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4121 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4107 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4122 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4108 proto.h errors.h globals.h 4123 proto.h globals.h errors.h
4109 objects/undo.o: undo.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4124 objects/undo.o: undo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4110 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4125 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4111 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4126 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4112 proto.h errors.h globals.h 4127 proto.h globals.h errors.h
4113 objects/usercmd.o: usercmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4128 objects/usercmd.o: usercmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4114 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4129 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4115 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4130 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4116 proto.h errors.h globals.h 4131 proto.h globals.h errors.h
4117 objects/userfunc.o: userfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4132 objects/userfunc.o: userfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4118 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4133 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4119 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4134 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4120 proto.h errors.h globals.h 4135 proto.h globals.h errors.h
4121 objects/version.o: version.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4136 objects/version.o: version.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4122 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4137 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4123 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4138 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4124 proto.h errors.h globals.h version.h 4139 proto.h globals.h errors.h version.h
4125 objects/vim9compile.o: vim9compile.c vim.h protodef.h auto/config.h feature.h \ 4140 objects/vim9compile.o: vim9compile.c vim.h protodef.h auto/config.h feature.h \
4126 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4141 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4127 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4142 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4128 proto.h errors.h globals.h vim9.h 4143 proto.h globals.h errors.h vim9.h
4129 objects/vim9execute.o: vim9execute.c vim.h protodef.h auto/config.h feature.h \ 4144 objects/vim9execute.o: vim9execute.c vim.h protodef.h auto/config.h feature.h \
4130 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4145 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4131 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4146 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4132 proto.h errors.h globals.h vim9.h 4147 proto.h globals.h errors.h vim9.h
4133 objects/vim9script.o: vim9script.c vim.h protodef.h auto/config.h feature.h \ 4148 objects/vim9script.o: vim9script.c vim.h protodef.h auto/config.h feature.h \
4134 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4149 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4135 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4150 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4136 proto.h errors.h globals.h vim9.h 4151 proto.h globals.h errors.h vim9.h
4137 objects/vim9type.o: vim9type.c vim.h protodef.h auto/config.h feature.h \ 4152 objects/vim9type.o: vim9type.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4138 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4153 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4139 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4154 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4140 proto.h errors.h globals.h vim9.h 4155 proto.h globals.h errors.h
4141 objects/viminfo.o: viminfo.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4156 objects/viminfo.o: viminfo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4142 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4157 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4143 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4158 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4144 proto.h errors.h globals.h version.h 4159 proto.h globals.h errors.h version.h
4145 objects/window.o: window.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4160 objects/window.o: window.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4146 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4161 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4147 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4162 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4148 proto.h errors.h globals.h 4163 proto.h globals.h errors.h
4149 objects/bufwrite.o: bufwrite.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4164 objects/bufwrite.o: bufwrite.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4150 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4165 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4151 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4166 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4152 proto.h errors.h globals.h 4167 proto.h globals.h errors.h
4153 objects/gui.o: gui.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4168 objects/gui.o: gui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4154 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4169 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4155 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4170 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4156 proto.h errors.h globals.h 4171 proto.h globals.h errors.h
4157 objects/gui_gtk.o: gui_gtk.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4172 objects/gui_gtk.o: gui_gtk.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4158 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4173 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4159 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4174 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4160 proto.h errors.h globals.h gui_gtk_f.h 4175 proto.h globals.h errors.h gui_gtk_f.h
4161 objects/gui_gtk_f.o: gui_gtk_f.c vim.h protodef.h auto/config.h feature.h \ 4176 objects/gui_gtk_f.o: gui_gtk_f.c vim.h protodef.h auto/config.h feature.h \
4162 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4177 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4163 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4178 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4164 proto.h errors.h globals.h gui_gtk_f.h 4179 proto.h globals.h errors.h gui_gtk_f.h
4165 objects/gui_motif.o: gui_motif.c vim.h protodef.h auto/config.h feature.h \ 4180 objects/gui_motif.o: gui_motif.c vim.h protodef.h auto/config.h feature.h \
4166 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4181 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4167 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4182 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4168 proto.h errors.h globals.h gui_xmebw.h ../pixmaps/alert.xpm ../pixmaps/error.xpm \ 4183 proto.h globals.h errors.h gui_xmebw.h ../pixmaps/alert.xpm \
4169 ../pixmaps/generic.xpm ../pixmaps/info.xpm ../pixmaps/quest.xpm \ 4184 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \
4170 gui_x11_pm.h ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm \ 4185 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \
4171 ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm \
4172 ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm \
4173 ../pixmaps/tb_find.xpm ../pixmaps/tb_find_next.xpm \
4174 ../pixmaps/tb_find_prev.xpm ../pixmaps/tb_find_help.xpm \
4175 ../pixmaps/tb_exit.xpm ../pixmaps/tb_undo.xpm ../pixmaps/tb_redo.xpm \
4176 ../pixmaps/tb_help.xpm ../pixmaps/tb_macro.xpm ../pixmaps/tb_make.xpm \
4177 ../pixmaps/tb_save_all.xpm ../pixmaps/tb_jump.xpm \
4178 ../pixmaps/tb_ctags.xpm ../pixmaps/tb_load_session.xpm \
4179 ../pixmaps/tb_save_session.xpm ../pixmaps/tb_new_session.xpm \
4180 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
4181 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
4182 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
4183 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
4184 ../pixmaps/tb_minwidth.xpm
4185 objects/gui_xmdlg.o: gui_xmdlg.c vim.h protodef.h auto/config.h feature.h \
4186 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4187 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4188 proto.h errors.h globals.h
4189 objects/gui_xmebw.o: gui_xmebw.c vim.h protodef.h auto/config.h feature.h \
4190 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4191 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4192 proto.h errors.h globals.h gui_xmebwp.h gui_xmebw.h
4193 objects/gui_athena.o: gui_athena.c vim.h protodef.h auto/config.h feature.h \
4194 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4195 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4196 proto.h errors.h globals.h gui_at_sb.h gui_x11_pm.h ../pixmaps/tb_new.xpm \
4197 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \ 4186 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \
4198 ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \ 4187 ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \
4199 ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \ 4188 ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
4200 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \ 4189 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \
4201 ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \ 4190 ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \
4207 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \ 4196 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
4208 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \ 4197 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
4209 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ 4198 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
4210 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ 4199 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
4211 ../pixmaps/tb_minwidth.xpm 4200 ../pixmaps/tb_minwidth.xpm
4201 objects/gui_xmdlg.o: gui_xmdlg.c vim.h protodef.h auto/config.h feature.h \
4202 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4203 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4204 proto.h globals.h errors.h
4205 objects/gui_xmebw.o: gui_xmebw.c vim.h protodef.h auto/config.h feature.h \
4206 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4207 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4208 proto.h globals.h errors.h gui_xmebwp.h gui_xmebw.h
4209 objects/gui_athena.o: gui_athena.c vim.h protodef.h auto/config.h feature.h \
4210 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4211 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4212 proto.h globals.h errors.h gui_at_sb.h gui_x11_pm.h \
4213 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \
4214 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \
4215 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
4216 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \
4217 ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \
4218 ../pixmaps/tb_undo.xpm ../pixmaps/tb_redo.xpm ../pixmaps/tb_help.xpm \
4219 ../pixmaps/tb_macro.xpm ../pixmaps/tb_make.xpm \
4220 ../pixmaps/tb_save_all.xpm ../pixmaps/tb_jump.xpm \
4221 ../pixmaps/tb_ctags.xpm ../pixmaps/tb_load_session.xpm \
4222 ../pixmaps/tb_save_session.xpm ../pixmaps/tb_new_session.xpm \
4223 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
4224 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
4225 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
4226 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
4227 ../pixmaps/tb_minwidth.xpm
4212 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h protodef.h auto/config.h feature.h \ 4228 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h protodef.h auto/config.h feature.h \
4213 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4229 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4214 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4230 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4215 proto.h errors.h globals.h auto/gui_gtk_gresources.h gui_gtk_f.h \ 4231 proto.h globals.h errors.h auto/gui_gtk_gresources.h gui_gtk_f.h \
4216 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm 4232 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
4217 objects/gui_x11.o: gui_x11.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4233 objects/gui_x11.o: gui_x11.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4218 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4234 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4219 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4235 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4220 proto.h errors.h globals.h ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm \ 4236 proto.h globals.h errors.h ../runtime/vim32x32.xpm \
4221 ../runtime/vim48x48.xpm 4237 ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
4222 objects/gui_xim.o: gui_xim.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4223 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4224 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4225 proto.h errors.h globals.h ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm \
4226 ../runtime/vim48x48.xpm
4227 objects/gui_at_sb.o: gui_at_sb.c vim.h protodef.h auto/config.h feature.h \ 4238 objects/gui_at_sb.o: gui_at_sb.c vim.h protodef.h auto/config.h feature.h \
4228 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4239 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4229 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4240 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4230 proto.h errors.h globals.h gui_at_sb.h 4241 proto.h globals.h errors.h gui_at_sb.h
4231 objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \ 4242 objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \
4232 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4243 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4233 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4244 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4234 proto.h errors.h globals.h gui_at_sb.h 4245 proto.h globals.h errors.h gui_at_sb.h
4235 objects/job.o: job.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4246 objects/gui_haiku.o: gui_haiku.cc vim.h protodef.h auto/config.h feature.h \
4236 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4247 os_unix.h ascii.h keymap.h term.h macros.h option.h beval.h \
4237 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4248 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4238 proto.h errors.h globals.h 4249 proto.h globals.h errors.h version.h
4239 objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \ 4250 objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \
4240 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4251 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4241 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4252 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4242 proto.h errors.h globals.h json.c 4253 proto.h globals.h errors.h json.c
4243 objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \ 4254 objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \
4244 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \ 4255 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
4245 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \ 4256 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
4246 ex_cmds.h spell.h proto.h errors.h globals.h charset.c 4257 ex_cmds.h spell.h proto.h globals.h errors.h charset.c
4247 objects/memfile_test.o: memfile_test.c main.c vim.h protodef.h auto/config.h \ 4258 objects/memfile_test.o: memfile_test.c main.c vim.h protodef.h auto/config.h \
4248 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \ 4259 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
4249 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \ 4260 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
4250 ex_cmds.h spell.h proto.h errors.h globals.h memfile.c 4261 ex_cmds.h spell.h proto.h globals.h errors.h memfile.c
4251 objects/message_test.o: message_test.c main.c vim.h protodef.h auto/config.h \ 4262 objects/message_test.o: message_test.c main.c vim.h protodef.h auto/config.h \
4252 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \ 4263 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
4253 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \ 4264 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
4254 ex_cmds.h spell.h proto.h errors.h globals.h message.c 4265 ex_cmds.h spell.h proto.h globals.h errors.h message.c
4255 objects/if_lua.o: if_lua.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4266 objects/if_lua.o: if_lua.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4256 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4267 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4257 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4268 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4258 proto.h errors.h globals.h 4269 proto.h globals.h errors.h version.h
4259 objects/if_mzsch.o: if_mzsch.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4270 objects/if_mzsch.o: if_mzsch.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4260 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4271 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4261 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4272 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4262 proto.h errors.h globals.h if_mzsch.h 4273 proto.h globals.h errors.h if_mzsch.h
4263 objects/if_perl.o: auto/if_perl.c vim.h protodef.h auto/config.h feature.h \ 4274 objects/if_perl.o: auto/if_perl.c vim.h protodef.h auto/config.h feature.h \
4264 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4275 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4265 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4276 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4266 proto.h errors.h globals.h 4277 proto.h globals.h errors.h
4267 objects/if_perlsfio.o: if_perlsfio.c vim.h protodef.h auto/config.h feature.h \ 4278 objects/if_perlsfio.o: if_perlsfio.c vim.h protodef.h auto/config.h feature.h \
4268 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4279 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4269 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4280 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4270 proto.h errors.h globals.h 4281 proto.h globals.h errors.h
4271 objects/if_python.o: if_python.c vim.h protodef.h auto/config.h feature.h \ 4282 objects/if_python.o: if_python.c vim.h protodef.h auto/config.h feature.h \
4272 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4283 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4273 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4284 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4274 proto.h errors.h globals.h if_py_both.h 4285 proto.h globals.h errors.h if_py_both.h
4275 objects/if_python3.o: if_python3.c vim.h protodef.h auto/config.h feature.h \ 4286 objects/if_python3.o: if_python3.c vim.h protodef.h auto/config.h feature.h \
4276 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4287 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4277 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4288 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4278 proto.h errors.h globals.h if_py_both.h 4289 proto.h globals.h errors.h if_py_both.h
4279 objects/if_tcl.o: if_tcl.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4290 objects/if_tcl.o: if_tcl.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4280 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4291 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4281 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4292 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4282 proto.h errors.h globals.h 4293 proto.h globals.h errors.h
4283 objects/if_ruby.o: if_ruby.c protodef.h auto/config.h vim.h feature.h os_unix.h \ 4294 objects/if_ruby.o: if_ruby.c protodef.h auto/config.h vim.h feature.h os_unix.h \
4284 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4295 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4285 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4296 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4286 proto.h errors.h globals.h version.h 4297 proto.h globals.h errors.h version.h
4287 objects/gui_beval.o: gui_beval.c vim.h protodef.h auto/config.h feature.h \ 4298 objects/gui_beval.o: gui_beval.c vim.h protodef.h auto/config.h feature.h \
4288 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4299 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4289 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4300 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4290 proto.h errors.h globals.h 4301 proto.h globals.h errors.h
4291 objects/netbeans.o: netbeans.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4302 objects/netbeans.o: netbeans.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4292 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4303 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4293 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4304 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4294 proto.h errors.h globals.h version.h 4305 proto.h globals.h errors.h version.h
4306 objects/job.o: job.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4307 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4308 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4309 proto.h globals.h errors.h
4295 objects/channel.o: channel.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 4310 objects/channel.o: channel.c vim.h protodef.h auto/config.h feature.h os_unix.h \
4296 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 4311 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
4297 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 4312 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4298 proto.h errors.h globals.h 4313 proto.h globals.h errors.h
4299 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c 4314 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c
4300 objects/vterm_encoding.o: libvterm/src/encoding.c libvterm/src/vterm_internal.h \ 4315 objects/vterm_encoding.o: libvterm/src/encoding.c libvterm/src/vterm_internal.h \
4301 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \ 4316 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4302 libvterm/src/encoding/DECdrawing.inc libvterm/src/encoding/uk.inc 4317 libvterm/src/encoding/DECdrawing.inc libvterm/src/encoding/uk.inc
4303 objects/vterm_keyboard.o: libvterm/src/keyboard.c libvterm/src/vterm_internal.h \ 4318 objects/vterm_keyboard.o: libvterm/src/keyboard.c libvterm/src/vterm_internal.h \
4314 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \ 4329 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4315 libvterm/src/rect.h libvterm/src/utf8.h 4330 libvterm/src/rect.h libvterm/src/utf8.h
4316 objects/vterm_state.o: libvterm/src/state.c libvterm/src/vterm_internal.h \ 4331 objects/vterm_state.o: libvterm/src/state.c libvterm/src/vterm_internal.h \
4317 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h 4332 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
4318 objects/vterm_unicode.o: libvterm/src/unicode.c libvterm/src/vterm_internal.h \ 4333 objects/vterm_unicode.o: libvterm/src/unicode.c libvterm/src/vterm_internal.h \
4319 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h 4334 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4335 libvterm/src/fullwidth.inc
4320 objects/vterm_vterm.o: libvterm/src/vterm.c libvterm/src/vterm_internal.h \ 4336 objects/vterm_vterm.o: libvterm/src/vterm.c libvterm/src/vterm_internal.h \
4321 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \ 4337 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4322 libvterm/src/utf8.h 4338 libvterm/src/utf8.h
4323 objects/xdiffi.o: xdiff/xdiffi.c xdiff/xinclude.h auto/config.h \ 4339 objects/xdiffi.o: xdiff/xdiffi.c xdiff/xinclude.h auto/config.h \
4324 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4340 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4325 auto/config.h feature.h os_unix.h \ 4341 auto/config.h feature.h os_unix.h \
4326 auto/osdef.h ascii.h keymap.h term.h \ 4342 auto/osdef.h ascii.h keymap.h term.h \
4327 macros.h option.h beval.h proto/gui_beval.pro \ 4343 macros.h option.h beval.h proto/gui_beval.pro \
4328 structs.h regexp.h gui.h alloc.h \ 4344 structs.h regexp.h gui.h alloc.h \
4329 ex_cmds.h spell.h proto.h errors.h globals.h \ 4345 ex_cmds.h spell.h proto.h globals.h \
4330 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4346 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4331 xdiff/xemit.h 4347 xdiff/xdiffi.h xdiff/xemit.h
4332 objects/xemit.o: xdiff/xemit.c xdiff/xinclude.h auto/config.h \ 4348 objects/xemit.o: xdiff/xemit.c xdiff/xinclude.h auto/config.h \
4333 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4349 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4334 auto/config.h feature.h os_unix.h \ 4350 auto/config.h feature.h os_unix.h \
4335 auto/osdef.h ascii.h keymap.h term.h \ 4351 auto/osdef.h ascii.h keymap.h term.h \
4336 macros.h option.h beval.h proto/gui_beval.pro \ 4352 macros.h option.h beval.h proto/gui_beval.pro \
4337 structs.h regexp.h gui.h alloc.h \ 4353 structs.h regexp.h gui.h alloc.h \
4338 ex_cmds.h spell.h proto.h errors.h globals.h \ 4354 ex_cmds.h spell.h proto.h globals.h \
4339 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4355 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4340 xdiff/xemit.h 4356 xdiff/xdiffi.h xdiff/xemit.h
4341 objects/xprepare.o: xdiff/xprepare.c xdiff/xinclude.h auto/config.h \ 4357 objects/xprepare.o: xdiff/xprepare.c xdiff/xinclude.h auto/config.h \
4342 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4358 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4343 auto/config.h feature.h os_unix.h \ 4359 auto/config.h feature.h os_unix.h \
4344 auto/osdef.h ascii.h keymap.h term.h \ 4360 auto/osdef.h ascii.h keymap.h term.h \
4345 macros.h option.h beval.h proto/gui_beval.pro \ 4361 macros.h option.h beval.h proto/gui_beval.pro \
4346 structs.h regexp.h gui.h alloc.h \ 4362 structs.h regexp.h gui.h alloc.h \
4347 ex_cmds.h spell.h proto.h errors.h globals.h \ 4363 ex_cmds.h spell.h proto.h globals.h \
4348 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4364 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4349 xdiff/xemit.h 4365 xdiff/xdiffi.h xdiff/xemit.h
4350 objects/xutils.o: xdiff/xutils.c xdiff/xinclude.h auto/config.h \ 4366 objects/xutils.o: xdiff/xutils.c xdiff/xinclude.h auto/config.h \
4351 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4367 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4352 auto/config.h feature.h os_unix.h \ 4368 auto/config.h feature.h os_unix.h \
4353 auto/osdef.h ascii.h keymap.h term.h \ 4369 auto/osdef.h ascii.h keymap.h term.h \
4354 macros.h option.h beval.h proto/gui_beval.pro \ 4370 macros.h option.h beval.h proto/gui_beval.pro \
4355 structs.h regexp.h gui.h alloc.h \ 4371 structs.h regexp.h gui.h alloc.h \
4356 ex_cmds.h spell.h proto.h errors.h globals.h \ 4372 ex_cmds.h spell.h proto.h globals.h \
4357 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4373 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4358 xdiff/xemit.h 4374 xdiff/xdiffi.h xdiff/xemit.h
4359 objects/xhistogram.o: xdiff/xhistogram.c xdiff/xinclude.h auto/config.h \ 4375 objects/xhistogram.o: xdiff/xhistogram.c xdiff/xinclude.h auto/config.h \
4360 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4376 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4361 auto/config.h feature.h os_unix.h \ 4377 auto/config.h feature.h os_unix.h \
4362 auto/osdef.h ascii.h keymap.h term.h \ 4378 auto/osdef.h ascii.h keymap.h term.h \
4363 macros.h option.h beval.h proto/gui_beval.pro \ 4379 macros.h option.h beval.h proto/gui_beval.pro \
4364 structs.h regexp.h gui.h alloc.h \ 4380 structs.h regexp.h gui.h alloc.h \
4365 ex_cmds.h spell.h proto.h errors.h globals.h \ 4381 ex_cmds.h spell.h proto.h globals.h \
4366 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4382 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4367 xdiff/xemit.h 4383 xdiff/xdiffi.h xdiff/xemit.h
4368 objects/xpatience.o: xdiff/xpatience.c xdiff/xinclude.h auto/config.h \ 4384 objects/xpatience.o: xdiff/xpatience.c xdiff/xinclude.h auto/config.h \
4369 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \ 4385 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4370 auto/config.h feature.h os_unix.h \ 4386 auto/config.h feature.h os_unix.h \
4371 auto/osdef.h ascii.h keymap.h term.h \ 4387 auto/osdef.h ascii.h keymap.h term.h \
4372 macros.h option.h beval.h proto/gui_beval.pro \ 4388 macros.h option.h beval.h proto/gui_beval.pro \
4373 structs.h regexp.h gui.h alloc.h \ 4389 structs.h regexp.h gui.h alloc.h \
4374 ex_cmds.h spell.h proto.h errors.h globals.h \ 4390 ex_cmds.h spell.h proto.h globals.h \
4375 xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h \ 4391 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4376 xdiff/xemit.h 4392 xdiff/xdiffi.h xdiff/xemit.h