0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

updated for version 7.2-000

This commit is contained in:
Bram Moolenaar
2008-08-09 17:55:22 +00:00
parent a6404a4e10
commit ed39e1d53c
170 changed files with 445 additions and 310 deletions

View File

@@ -177,6 +177,9 @@
# ifdef FEAT_X11
# undef FEAT_X11
# endif
# ifdef FEAT_GUI_X11
# undef FEAT_GUI_X11
# endif
# ifdef FEAT_XCLIPBOARD
# undef FEAT_XCLIPBOARD
# endif
@@ -2014,8 +2017,9 @@ typedef int VimClipboard; /* This is required for the prototypes. */
# ifdef instr
# undef instr
# endif
/* bool causes trouble on MACOS but is required on a few other systems */
# if defined(bool) && defined(MACOS)
/* bool may cause trouble on MACOS but is required on a few other systems
* and for Perl */
# if defined(bool) && defined(MACOS) && !defined(FEAT_PERL)
# undef bool
# endif