0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.4.011

Problem:    Cannot find out if "acl" and "xpm" features are supported.
Solution:   Add "acl" and "xpm" to the list of features. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-08-30 16:35:44 +02:00
parent 195ef0ccb2
commit b5ef5e1c21
2 changed files with 22 additions and 1 deletions

View File

@@ -12135,6 +12135,9 @@ f_has(argvars, rettv)
#ifndef CASE_INSENSITIVE_FILENAME
"fname_case",
#endif
#ifdef HAVE_ACL
"acl",
#endif
#ifdef FEAT_ARABIC
"arabic",
#endif
@@ -12538,7 +12541,12 @@ f_has(argvars, rettv)
"xfontset",
#endif
#ifdef FEAT_XPM_W32
"xpm_w32",
"xpm",
"xpm_w32", /* for backward compatibility */
#else
# if defined(HAVE_XPM)
"xpm",
# endif
#endif
#ifdef USE_XSMP
"xsmp",