mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 16:28:17 +00:00
Removed FEAT_WINDOWS
Support for multiple windows and status line.
This commit is contained in:
@@ -1838,9 +1838,7 @@ int hex2nr(int c)
|
||||
return c - '0';
|
||||
}
|
||||
|
||||
#if defined(FEAT_TERMRESPONSE) \
|
||||
|| (defined(FEAT_GUI_GTK) && defined(FEAT_WINDOWS)) \
|
||||
|| defined(PROTO)
|
||||
#if defined(FEAT_TERMRESPONSE) || defined(FEAT_GUI_GTK) || defined(PROTO)
|
||||
|
||||
/// Convert two hex characters to a byte.
|
||||
/// Return -1 if one of the characters is not hex.
|
||||
@@ -1857,8 +1855,8 @@ int hexhex2nr(char_u *p)
|
||||
return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
|
||||
}
|
||||
|
||||
#endif // if defined(FEAT_TERMRESPONSE) || (defined(FEAT_GUI_GTK)
|
||||
// && defined(FEAT_WINDOWS)) || defined(PROTO)
|
||||
#endif // if defined(FEAT_TERMRESPONSE) || defined(FEAT_GUI_GTK)
|
||||
// || defined(PROTO)
|
||||
|
||||
/// Return TRUE if "str" starts with a backslash that should be removed.
|
||||
/// For WIN32 this is only done when the character after the
|
||||
|
Reference in New Issue
Block a user