comparison src/Makefile @ 12871:1a450ce6980c v8.0.1312

patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI commit https://github.com/vim/vim/commit/c3719bd87beca9f72d2e9f11e36d561c2c3b57b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 18 22:13:31 2017 +0100 patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.
author Christian Brabandt <cb@256bit.org>
date Sat, 18 Nov 2017 22:15:05 +0100
parents 90aaa974594e
children 6bde43dc824c
comparison
equal deleted inserted replaced
12870:0469872186f5 12871:1a450ce6980c
1527 1527
1528 TAGS_INCL = *.h 1528 TAGS_INCL = *.h
1529 1529
1530 BASIC_SRC = \ 1530 BASIC_SRC = \
1531 arabic.c \ 1531 arabic.c \
1532 beval.c \
1532 blowfish.c \ 1533 blowfish.c \
1533 buffer.c \ 1534 buffer.c \
1534 charset.c \ 1535 charset.c \
1535 crypt.c \ 1536 crypt.c \
1536 crypt_zip.c \ 1537 crypt_zip.c \
1639 #LINT_SRC = $(ALL_SRC) 1640 #LINT_SRC = $(ALL_SRC)
1640 #LINT_SRC = $(BASIC_SRC) 1641 #LINT_SRC = $(BASIC_SRC)
1641 1642
1642 OBJ_COMMON = \ 1643 OBJ_COMMON = \
1643 objects/arabic.o \ 1644 objects/arabic.o \
1645 objects/beval.o \
1644 objects/buffer.o \ 1646 objects/buffer.o \
1645 objects/blowfish.o \ 1647 objects/blowfish.o \
1646 objects/crypt.o \ 1648 objects/crypt.o \
1647 objects/crypt_zip.o \ 1649 objects/crypt_zip.o \
1648 objects/dict.o \ 1650 objects/dict.o \
1827 ui.pro \ 1829 ui.pro \
1828 undo.pro \ 1830 undo.pro \
1829 userfunc.pro \ 1831 userfunc.pro \
1830 version.pro \ 1832 version.pro \
1831 window.pro \ 1833 window.pro \
1834 beval.pro \
1832 gui_beval.pro \ 1835 gui_beval.pro \
1833 workshop.pro \ 1836 workshop.pro \
1834 netbeans.pro \ 1837 netbeans.pro \
1835 channel.pro \ 1838 channel.pro \
1836 $(ALL_GUI_PRO) \ 1839 $(ALL_GUI_PRO) \
3086 $(CCC) -o $@ gui_at_sb.c 3089 $(CCC) -o $@ gui_at_sb.c
3087 3090
3088 objects/gui_athena.o: gui_athena.c 3091 objects/gui_athena.o: gui_athena.c
3089 $(CCC) -o $@ gui_athena.c 3092 $(CCC) -o $@ gui_athena.c
3090 3093
3094 objects/beval.o: beval.c
3095 $(CCC) -o $@ beval.c
3096
3091 objects/gui_beval.o: gui_beval.c 3097 objects/gui_beval.o: gui_beval.c
3092 $(CCC) -o $@ gui_beval.c 3098 $(CCC) -o $@ gui_beval.c
3093 3099
3094 objects/gui_gtk.o: gui_gtk.c 3100 objects/gui_gtk.o: gui_gtk.c
3095 $(CCC) -o $@ gui_gtk.c 3101 $(CCC) -o $@ gui_gtk.c
3430 ############################################################################### 3436 ###############################################################################
3431 ### (automatically generated by 'make depend') 3437 ### (automatically generated by 'make depend')
3432 ### Dependencies: 3438 ### Dependencies:
3433 objects/arabic.o: arabic.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3439 objects/arabic.o: arabic.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3434 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3440 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3435 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3441 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3436 globals.h farsi.h arabic.h 3442 globals.h farsi.h arabic.h
3437 objects/blowfish.o: blowfish.c vim.h auto/config.h feature.h os_unix.h \ 3443 objects/blowfish.o: blowfish.c vim.h auto/config.h feature.h os_unix.h \
3438 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3444 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3439 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3445 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3440 proto.h globals.h farsi.h arabic.h 3446 proto.h globals.h farsi.h arabic.h
3441 objects/buffer.o: buffer.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3447 objects/buffer.o: buffer.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3442 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3448 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3443 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3449 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3444 globals.h farsi.h arabic.h version.h 3450 globals.h farsi.h arabic.h version.h
3445 objects/charset.o: charset.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3451 objects/charset.o: charset.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3446 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3452 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3447 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3453 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3448 globals.h farsi.h arabic.h 3454 globals.h farsi.h arabic.h
3449 objects/crypt.o: crypt.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3455 objects/crypt.o: crypt.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3450 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3456 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3451 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3457 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3452 globals.h farsi.h arabic.h 3458 globals.h farsi.h arabic.h
3453 objects/crypt_zip.o: crypt_zip.c vim.h auto/config.h feature.h os_unix.h \ 3459 objects/crypt_zip.o: crypt_zip.c vim.h auto/config.h feature.h os_unix.h \
3454 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3460 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3455 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3461 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3456 proto.h globals.h farsi.h arabic.h 3462 proto.h globals.h farsi.h arabic.h
3457 objects/dict.o: dict.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3463 objects/dict.o: dict.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3458 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3464 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3459 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3465 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3460 globals.h farsi.h arabic.h 3466 globals.h farsi.h arabic.h
3461 objects/diff.o: diff.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3467 objects/diff.o: diff.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3462 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3468 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3463 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3469 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3464 globals.h farsi.h arabic.h 3470 globals.h farsi.h arabic.h
3465 objects/digraph.o: digraph.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3471 objects/digraph.o: digraph.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3466 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3472 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3467 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3473 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3468 globals.h farsi.h arabic.h 3474 globals.h farsi.h arabic.h
3469 objects/edit.o: edit.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3475 objects/edit.o: edit.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3470 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3476 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3471 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3477 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3472 globals.h farsi.h arabic.h 3478 globals.h farsi.h arabic.h
3473 objects/eval.o: eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3479 objects/eval.o: eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3474 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3480 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3475 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3481 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3476 globals.h farsi.h arabic.h version.h 3482 globals.h farsi.h arabic.h version.h
3477 objects/evalfunc.o: evalfunc.c vim.h auto/config.h feature.h os_unix.h \ 3483 objects/evalfunc.o: evalfunc.c vim.h auto/config.h feature.h os_unix.h \
3478 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3484 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3479 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3485 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3480 proto.h globals.h farsi.h arabic.h version.h 3486 proto.h globals.h farsi.h arabic.h version.h
3481 objects/ex_cmds.o: ex_cmds.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3487 objects/ex_cmds.o: ex_cmds.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3482 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3488 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3483 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3489 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3484 globals.h farsi.h arabic.h version.h 3490 globals.h farsi.h arabic.h version.h
3485 objects/ex_cmds2.o: ex_cmds2.c vim.h auto/config.h feature.h os_unix.h \ 3491 objects/ex_cmds2.o: ex_cmds2.c vim.h auto/config.h feature.h os_unix.h \
3486 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3492 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3487 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3493 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3488 proto.h globals.h farsi.h arabic.h version.h 3494 proto.h globals.h farsi.h arabic.h version.h
3489 objects/ex_docmd.o: ex_docmd.c vim.h auto/config.h feature.h os_unix.h \ 3495 objects/ex_docmd.o: ex_docmd.c vim.h auto/config.h feature.h os_unix.h \
3490 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3496 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3491 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3497 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3492 proto.h globals.h farsi.h arabic.h ex_cmdidxs.h 3498 proto.h globals.h farsi.h arabic.h ex_cmdidxs.h
3493 objects/ex_eval.o: ex_eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3499 objects/ex_eval.o: ex_eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3494 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3500 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3495 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3501 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3496 globals.h farsi.h arabic.h 3502 globals.h farsi.h arabic.h
3497 objects/ex_getln.o: ex_getln.c vim.h auto/config.h feature.h os_unix.h \ 3503 objects/ex_getln.o: ex_getln.c vim.h auto/config.h feature.h os_unix.h \
3498 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3504 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3499 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3505 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3500 proto.h globals.h farsi.h arabic.h 3506 proto.h globals.h farsi.h arabic.h
3501 objects/farsi.o: farsi.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3507 objects/farsi.o: farsi.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3502 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3508 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3503 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3509 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3504 globals.h farsi.h arabic.h 3510 globals.h farsi.h arabic.h
3505 objects/fileio.o: fileio.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3511 objects/fileio.o: fileio.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3506 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3512 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3507 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3513 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3508 globals.h farsi.h arabic.h 3514 globals.h farsi.h arabic.h
3509 objects/fold.o: fold.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3515 objects/fold.o: fold.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3510 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3516 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3511 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3517 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3512 globals.h farsi.h arabic.h 3518 globals.h farsi.h arabic.h
3513 objects/getchar.o: getchar.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3519 objects/getchar.o: getchar.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3514 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3520 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3515 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3521 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3516 globals.h farsi.h arabic.h 3522 globals.h farsi.h arabic.h
3517 objects/hardcopy.o: hardcopy.c vim.h auto/config.h feature.h os_unix.h \ 3523 objects/hardcopy.o: hardcopy.c vim.h auto/config.h feature.h os_unix.h \
3518 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3524 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3519 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3525 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3520 proto.h globals.h farsi.h arabic.h version.h 3526 proto.h globals.h farsi.h arabic.h version.h
3521 objects/hashtab.o: hashtab.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3527 objects/hashtab.o: hashtab.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3522 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3528 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3523 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3529 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3524 globals.h farsi.h arabic.h 3530 globals.h farsi.h arabic.h
3525 objects/if_cscope.o: if_cscope.c vim.h auto/config.h feature.h os_unix.h \ 3531 objects/if_cscope.o: if_cscope.c vim.h auto/config.h feature.h os_unix.h \
3526 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3532 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3527 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3533 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3528 proto.h globals.h farsi.h arabic.h if_cscope.h 3534 proto.h globals.h farsi.h arabic.h if_cscope.h
3529 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h auto/config.h feature.h os_unix.h \ 3535 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h auto/config.h feature.h os_unix.h \
3530 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3536 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3531 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3537 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3532 proto.h globals.h farsi.h arabic.h version.h 3538 proto.h globals.h farsi.h arabic.h version.h
3533 objects/json.o: json.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3539 objects/json.o: json.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3534 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3540 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3535 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3541 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3536 globals.h farsi.h arabic.h 3542 globals.h farsi.h arabic.h
3537 objects/list.o: list.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3543 objects/list.o: list.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3538 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3544 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3539 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3545 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3540 globals.h farsi.h arabic.h 3546 globals.h farsi.h arabic.h
3541 objects/main.o: main.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3547 objects/main.o: main.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3542 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3548 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3543 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3549 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3544 globals.h farsi.h arabic.h 3550 globals.h farsi.h arabic.h
3545 objects/mark.o: mark.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3551 objects/mark.o: mark.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3546 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3552 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3547 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3553 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3548 globals.h farsi.h arabic.h 3554 globals.h farsi.h arabic.h
3549 objects/memfile.o: memfile.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3555 objects/memfile.o: memfile.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3550 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3556 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3551 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3557 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3552 globals.h farsi.h arabic.h 3558 globals.h farsi.h arabic.h
3553 objects/memline.o: memline.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3559 objects/memline.o: memline.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3554 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3560 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3555 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3561 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3556 globals.h farsi.h arabic.h 3562 globals.h farsi.h arabic.h
3557 objects/menu.o: menu.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3563 objects/menu.o: menu.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3558 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3564 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3559 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3565 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3560 globals.h farsi.h arabic.h 3566 globals.h farsi.h arabic.h
3561 objects/message.o: message.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3567 objects/message.o: message.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3562 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3568 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3563 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3569 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3564 globals.h farsi.h arabic.h 3570 globals.h farsi.h arabic.h
3565 objects/misc1.o: misc1.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3571 objects/misc1.o: misc1.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3566 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3572 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3567 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3573 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3568 globals.h farsi.h arabic.h version.h 3574 globals.h farsi.h arabic.h version.h
3569 objects/misc2.o: misc2.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3575 objects/misc2.o: misc2.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3570 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3576 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3571 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3577 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3572 globals.h farsi.h arabic.h 3578 globals.h farsi.h arabic.h
3573 objects/move.o: move.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3579 objects/move.o: move.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3574 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3580 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3575 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3581 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3576 globals.h farsi.h arabic.h 3582 globals.h farsi.h arabic.h
3577 objects/mbyte.o: mbyte.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3583 objects/mbyte.o: mbyte.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3578 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3584 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3579 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3585 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3580 globals.h farsi.h arabic.h 3586 globals.h farsi.h arabic.h
3581 objects/normal.o: normal.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3587 objects/normal.o: normal.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3582 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3588 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3583 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3589 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3584 globals.h farsi.h arabic.h 3590 globals.h farsi.h arabic.h
3585 objects/ops.o: ops.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3591 objects/ops.o: ops.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
3586 keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \ 3592 keymap.h term.h macros.h option.h structs.h regexp.h gui.h beval.h \
3587 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3593 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
3588 arabic.h 3594 arabic.h
3589 objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3595 objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3590 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3596 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3591 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3597 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3592 globals.h farsi.h arabic.h 3598 globals.h farsi.h arabic.h
3593 objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3599 objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3594 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3600 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3595 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3601 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3596 globals.h farsi.h arabic.h os_unixx.h 3602 globals.h farsi.h arabic.h os_unixx.h
3597 objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \ 3603 objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \
3598 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3604 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3599 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3605 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3600 proto.h globals.h farsi.h arabic.h 3606 proto.h globals.h farsi.h arabic.h
3601 objects/popupmnu.o: popupmnu.c vim.h auto/config.h feature.h os_unix.h \ 3607 objects/popupmnu.o: popupmnu.c vim.h auto/config.h feature.h os_unix.h \
3602 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3608 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3603 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3609 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3604 proto.h globals.h farsi.h arabic.h 3610 proto.h globals.h farsi.h arabic.h
3605 objects/quickfix.o: quickfix.c vim.h auto/config.h feature.h os_unix.h \ 3611 objects/quickfix.o: quickfix.c vim.h auto/config.h feature.h os_unix.h \
3606 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3612 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3607 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3613 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3608 proto.h globals.h farsi.h arabic.h 3614 proto.h globals.h farsi.h arabic.h
3609 objects/regexp.o: regexp.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3615 objects/regexp.o: regexp.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3610 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3616 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3611 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3617 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3612 globals.h farsi.h arabic.h regexp_nfa.c 3618 globals.h farsi.h arabic.h regexp_nfa.c
3613 objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3619 objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3614 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3620 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3615 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3621 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3616 globals.h farsi.h arabic.h 3622 globals.h farsi.h arabic.h
3617 objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3623 objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3618 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3624 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3619 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3625 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3620 globals.h farsi.h arabic.h 3626 globals.h farsi.h arabic.h
3621 objects/sha256.o: sha256.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3627 objects/sha256.o: sha256.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3622 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3628 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3623 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3629 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3624 globals.h farsi.h arabic.h 3630 globals.h farsi.h arabic.h
3625 objects/spell.o: spell.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3631 objects/spell.o: spell.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3626 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3632 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3627 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3633 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3628 globals.h farsi.h arabic.h 3634 globals.h farsi.h arabic.h
3629 objects/spellfile.o: spellfile.c vim.h auto/config.h feature.h os_unix.h \ 3635 objects/spellfile.o: spellfile.c vim.h auto/config.h feature.h os_unix.h \
3630 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3636 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3631 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3637 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3632 proto.h globals.h farsi.h arabic.h 3638 proto.h globals.h farsi.h arabic.h
3633 objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3639 objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3634 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3640 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3635 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3641 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3636 globals.h farsi.h arabic.h 3642 globals.h farsi.h arabic.h
3637 objects/tag.o: tag.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3643 objects/tag.o: tag.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
3638 keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \ 3644 keymap.h term.h macros.h option.h structs.h regexp.h gui.h beval.h \
3639 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3645 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
3640 arabic.h 3646 arabic.h
3641 objects/term.o: term.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3647 objects/term.o: term.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3642 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3648 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3643 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3649 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3644 globals.h farsi.h arabic.h 3650 globals.h farsi.h arabic.h
3645 objects/terminal.o: terminal.c vim.h auto/config.h feature.h os_unix.h \ 3651 objects/terminal.o: terminal.c vim.h auto/config.h feature.h os_unix.h \
3646 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3652 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3647 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3653 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3648 proto.h globals.h farsi.h arabic.h 3654 proto.h globals.h farsi.h arabic.h
3649 objects/ui.o: ui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3655 objects/ui.o: ui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
3650 keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \ 3656 keymap.h term.h macros.h option.h structs.h regexp.h gui.h beval.h \
3651 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3657 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
3652 arabic.h 3658 arabic.h
3653 objects/undo.o: undo.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3659 objects/undo.o: undo.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3654 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3660 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3655 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3661 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3656 globals.h farsi.h arabic.h 3662 globals.h farsi.h arabic.h
3657 objects/userfunc.o: userfunc.c vim.h auto/config.h feature.h os_unix.h \ 3663 objects/userfunc.o: userfunc.c vim.h auto/config.h feature.h os_unix.h \
3658 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3664 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3659 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3665 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3660 proto.h globals.h farsi.h arabic.h 3666 proto.h globals.h farsi.h arabic.h
3661 objects/version.o: version.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3667 objects/version.o: version.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3662 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3668 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3663 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3669 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3664 globals.h farsi.h arabic.h version.h 3670 globals.h farsi.h arabic.h version.h
3665 objects/window.o: window.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3671 objects/window.o: window.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3666 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3672 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3667 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3673 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3668 globals.h farsi.h arabic.h 3674 globals.h farsi.h arabic.h
3669 objects/gui.o: gui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3675 objects/gui.o: gui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
3670 keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \ 3676 keymap.h term.h macros.h option.h structs.h regexp.h gui.h beval.h \
3671 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3677 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
3672 arabic.h 3678 arabic.h
3673 objects/gui_gtk.o: gui_gtk.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3679 objects/gui_gtk.o: gui_gtk.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3674 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3680 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3675 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3681 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3676 globals.h farsi.h arabic.h gui_gtk_f.h 3682 globals.h farsi.h arabic.h gui_gtk_f.h
3677 objects/gui_gtk_f.o: gui_gtk_f.c vim.h auto/config.h feature.h os_unix.h \ 3683 objects/gui_gtk_f.o: gui_gtk_f.c vim.h auto/config.h feature.h os_unix.h \
3678 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3684 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3679 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3685 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3680 proto.h globals.h farsi.h arabic.h gui_gtk_f.h 3686 proto.h globals.h farsi.h arabic.h gui_gtk_f.h
3681 objects/gui_motif.o: gui_motif.c vim.h auto/config.h feature.h os_unix.h \ 3687 objects/gui_motif.o: gui_motif.c vim.h auto/config.h feature.h os_unix.h \
3682 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3688 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3683 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3689 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3684 proto.h globals.h farsi.h arabic.h gui_xmebw.h ../pixmaps/alert.xpm \ 3690 proto.h globals.h farsi.h arabic.h gui_xmebw.h ../pixmaps/alert.xpm \
3685 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \ 3691 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \
3686 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \ 3692 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \
3687 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \ 3693 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \
3688 ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \ 3694 ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \
3699 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ 3705 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
3700 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ 3706 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
3701 ../pixmaps/tb_minwidth.xpm 3707 ../pixmaps/tb_minwidth.xpm
3702 objects/gui_xmdlg.o: gui_xmdlg.c vim.h auto/config.h feature.h os_unix.h \ 3708 objects/gui_xmdlg.o: gui_xmdlg.c vim.h auto/config.h feature.h os_unix.h \
3703 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3709 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3704 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3710 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3705 proto.h globals.h farsi.h arabic.h 3711 proto.h globals.h farsi.h arabic.h
3706 objects/gui_xmebw.o: gui_xmebw.c vim.h auto/config.h feature.h os_unix.h \ 3712 objects/gui_xmebw.o: gui_xmebw.c vim.h auto/config.h feature.h os_unix.h \
3707 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3713 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3708 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3714 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3709 proto.h globals.h farsi.h arabic.h gui_xmebwp.h gui_xmebw.h 3715 proto.h globals.h farsi.h arabic.h gui_xmebwp.h gui_xmebw.h
3710 objects/gui_athena.o: gui_athena.c vim.h auto/config.h feature.h os_unix.h \ 3716 objects/gui_athena.o: gui_athena.c vim.h auto/config.h feature.h os_unix.h \
3711 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3717 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3712 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3718 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3713 proto.h globals.h farsi.h arabic.h gui_at_sb.h gui_x11_pm.h \ 3719 proto.h globals.h farsi.h arabic.h gui_at_sb.h gui_x11_pm.h \
3714 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \ 3720 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \
3715 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \ 3721 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \
3716 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \ 3722 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
3717 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \ 3723 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \
3726 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ 3732 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
3727 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ 3733 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
3728 ../pixmaps/tb_minwidth.xpm 3734 ../pixmaps/tb_minwidth.xpm
3729 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h auto/config.h feature.h os_unix.h \ 3735 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h auto/config.h feature.h os_unix.h \
3730 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3736 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3731 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3737 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3732 proto.h globals.h farsi.h arabic.h auto/gui_gtk_gresources.h gui_gtk_f.h \ 3738 proto.h globals.h farsi.h arabic.h auto/gui_gtk_gresources.h gui_gtk_f.h \
3733 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm 3739 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
3734 objects/gui_x11.o: gui_x11.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3740 objects/gui_x11.o: gui_x11.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3735 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3741 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3736 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3742 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3737 globals.h farsi.h arabic.h ../runtime/vim32x32.xpm \ 3743 globals.h farsi.h arabic.h ../runtime/vim32x32.xpm \
3738 ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm 3744 ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
3739 objects/gui_at_sb.o: gui_at_sb.c vim.h auto/config.h feature.h os_unix.h \ 3745 objects/gui_at_sb.o: gui_at_sb.c vim.h auto/config.h feature.h os_unix.h \
3740 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3746 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3741 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3747 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3742 proto.h globals.h farsi.h arabic.h gui_at_sb.h 3748 proto.h globals.h farsi.h arabic.h gui_at_sb.h
3743 objects/gui_at_fs.o: gui_at_fs.c vim.h auto/config.h feature.h os_unix.h \ 3749 objects/gui_at_fs.o: gui_at_fs.c vim.h auto/config.h feature.h os_unix.h \
3744 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3750 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3745 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3751 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3746 proto.h globals.h farsi.h arabic.h gui_at_sb.h 3752 proto.h globals.h farsi.h arabic.h gui_at_sb.h
3747 objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3753 objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
3748 keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \ 3754 keymap.h term.h macros.h option.h structs.h regexp.h gui.h beval.h \
3749 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3755 proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \
3750 arabic.h 3756 arabic.h
3751 objects/json_test.o: json_test.c main.c vim.h auto/config.h feature.h os_unix.h \ 3757 objects/json_test.o: json_test.c main.c vim.h auto/config.h feature.h os_unix.h \
3752 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3758 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3753 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3759 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3754 proto.h globals.h farsi.h arabic.h json.c 3760 proto.h globals.h farsi.h arabic.h json.c
3755 objects/kword_test.o: kword_test.c main.c vim.h auto/config.h feature.h os_unix.h \ 3761 objects/kword_test.o: kword_test.c main.c vim.h auto/config.h feature.h os_unix.h \
3756 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3762 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3757 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3763 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3758 proto.h globals.h farsi.h arabic.h charset.c 3764 proto.h globals.h farsi.h arabic.h charset.c
3759 objects/memfile_test.o: memfile_test.c main.c vim.h auto/config.h feature.h \ 3765 objects/memfile_test.o: memfile_test.c main.c vim.h auto/config.h feature.h \
3760 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \ 3766 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \
3761 structs.h regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h \ 3767 structs.h regexp.h gui.h beval.h proto/gui_beval.pro alloc.h \
3762 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h memfile.c 3768 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h memfile.c
3763 objects/message_test.o: message_test.c main.c vim.h auto/config.h feature.h \ 3769 objects/message_test.o: message_test.c main.c vim.h auto/config.h feature.h \
3764 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \ 3770 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \
3765 structs.h regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h \ 3771 structs.h regexp.h gui.h beval.h proto/gui_beval.pro alloc.h \
3766 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h message.c 3772 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h message.c
3767 objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \ 3773 objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \
3768 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3774 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3769 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3775 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3770 proto.h globals.h farsi.h arabic.h 3776 proto.h globals.h farsi.h arabic.h
3771 objects/if_lua.o: if_lua.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3777 objects/if_lua.o: if_lua.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3772 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3778 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3773 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3779 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3774 globals.h farsi.h arabic.h 3780 globals.h farsi.h arabic.h
3775 objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \ 3781 objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \
3776 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3782 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3777 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3783 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3778 proto.h globals.h farsi.h arabic.h if_mzsch.h 3784 proto.h globals.h farsi.h arabic.h if_mzsch.h
3779 objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \ 3785 objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \
3780 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3786 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3781 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3787 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3782 proto.h globals.h farsi.h arabic.h 3788 proto.h globals.h farsi.h arabic.h
3783 objects/if_perlsfio.o: if_perlsfio.c vim.h auto/config.h feature.h os_unix.h \ 3789 objects/if_perlsfio.o: if_perlsfio.c vim.h auto/config.h feature.h os_unix.h \
3784 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3790 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3785 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3791 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3786 proto.h globals.h farsi.h arabic.h 3792 proto.h globals.h farsi.h arabic.h
3787 objects/if_python.o: if_python.c vim.h auto/config.h feature.h os_unix.h \ 3793 objects/if_python.o: if_python.c vim.h auto/config.h feature.h os_unix.h \
3788 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3794 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3789 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3795 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3790 proto.h globals.h farsi.h arabic.h if_py_both.h 3796 proto.h globals.h farsi.h arabic.h if_py_both.h
3791 objects/if_python3.o: if_python3.c vim.h auto/config.h feature.h os_unix.h \ 3797 objects/if_python3.o: if_python3.c vim.h auto/config.h feature.h os_unix.h \
3792 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3798 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3793 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3799 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3794 proto.h globals.h farsi.h arabic.h if_py_both.h 3800 proto.h globals.h farsi.h arabic.h if_py_both.h
3795 objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3801 objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3796 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3802 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3797 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3803 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3798 globals.h farsi.h arabic.h 3804 globals.h farsi.h arabic.h
3799 objects/if_ruby.o: if_ruby.c auto/config.h vim.h feature.h os_unix.h auto/osdef.h \ 3805 objects/if_ruby.o: if_ruby.c auto/config.h vim.h feature.h os_unix.h auto/osdef.h \
3800 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3806 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3801 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3807 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3802 globals.h farsi.h arabic.h version.h 3808 globals.h farsi.h arabic.h version.h
3803 objects/gui_beval.o: gui_beval.c vim.h auto/config.h feature.h os_unix.h \ 3809 objects/gui_beval.o: gui_beval.c vim.h auto/config.h feature.h os_unix.h \
3804 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3810 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3805 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3811 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3806 proto.h globals.h farsi.h arabic.h 3812 proto.h globals.h farsi.h arabic.h
3807 objects/workshop.o: workshop.c auto/config.h integration.h vim.h feature.h \ 3813 objects/workshop.o: workshop.c auto/config.h integration.h vim.h feature.h \
3808 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \ 3814 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \
3809 structs.h regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h \ 3815 structs.h regexp.h gui.h beval.h proto/gui_beval.pro alloc.h \
3810 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h version.h \ 3816 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h version.h \
3811 workshop.h 3817 workshop.h
3812 objects/wsdebug.o: wsdebug.c 3818 objects/wsdebug.o: wsdebug.c
3813 objects/integration.o: integration.c vim.h auto/config.h feature.h os_unix.h \ 3819 objects/integration.o: integration.c vim.h auto/config.h feature.h os_unix.h \
3814 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3820 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3815 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3821 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3816 proto.h globals.h farsi.h arabic.h integration.h 3822 proto.h globals.h farsi.h arabic.h integration.h
3817 objects/netbeans.o: netbeans.c vim.h auto/config.h feature.h os_unix.h \ 3823 objects/netbeans.o: netbeans.c vim.h auto/config.h feature.h os_unix.h \
3818 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \ 3824 auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
3819 regexp.h gui.h gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \ 3825 regexp.h gui.h beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h \
3820 proto.h globals.h farsi.h arabic.h version.h 3826 proto.h globals.h farsi.h arabic.h version.h
3821 objects/channel.o: channel.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3827 objects/channel.o: channel.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3822 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ 3828 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
3823 gui_beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ 3829 beval.h proto/gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
3824 globals.h farsi.h arabic.h 3830 globals.h farsi.h arabic.h
3825 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c 3831 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c