diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-08 23:52:28 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:53 -0400 |
commit | dd7657c1605246e8f7ade35184069a09dc254e84 (patch) | |
tree | ed644fb940453182556c9ccde856d1a5e472edd2 /src/nvim/charset.c | |
parent | 3dddceedceebb73b93d399f2c56b0f1b5394c645 (diff) | |
download | rneovim-dd7657c1605246e8f7ade35184069a09dc254e84.tar.gz rneovim-dd7657c1605246e8f7ade35184069a09dc254e84.tar.bz2 rneovim-dd7657c1605246e8f7ade35184069a09dc254e84.zip |
Removed FEAT_WINDOWS
Support for multiple windows and status line.
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r-- | src/nvim/charset.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c index ae5da557d5..28463d9705 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -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 |