1
0
forked from aniani/vim

Add the conceal patch from Vince Negri.

This commit is contained in:
Bram Moolenaar
2010-06-05 23:22:07 +02:00
parent 945e2dbb63
commit 860cae1cec
40 changed files with 1737 additions and 698 deletions

View File

@@ -134,6 +134,11 @@ static char *(features[]) =
#else
"-comments",
#endif
#ifdef FEAT_CONCEAL
"+conceal",
#else
"-conceal",
#endif
#ifdef FEAT_CRYPT
"+cryptv",
#else
@@ -144,6 +149,11 @@ static char *(features[]) =
#else
"-cscope",
#endif
#ifdef FEAT_CURSORBIND
"+cursorbind",
#else
"-cursorbind",
#endif
#ifdef CURSOR_SHAPE
"+cursorshape",
#else
@@ -935,13 +945,13 @@ list_version()
# if defined(MSWIN)
MSG_PUTS(_("with GUI."));
# else
# if defined (TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
MSG_PUTS(_("with Carbon GUI."));
# else
# if defined (TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
MSG_PUTS(_("with Cocoa GUI."));
# else
# if defined (MACOS)
# if defined(MACOS)
MSG_PUTS(_("with (classic) GUI."));
# endif
# endif