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:
10
src/eval.c
10
src/eval.c
@@ -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",
|
||||
|
Reference in New Issue
Block a user