aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui.c2
-rw-r--r--src/version.c1
-rw-r--r--src/vim.h3
3 files changed, 2 insertions, 4 deletions
diff --git a/src/ui.c b/src/ui.c
index 8905a99add..f81741dd05 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -364,7 +364,7 @@ void set_input_buf(char_u *p)
#if defined(FEAT_GUI) \
|| defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) \
|| defined(FEAT_XCLIPBOARD) || defined(VMS) \
- || defined(PROTO) || defined(FEAT_CLIENTSERVER)
+ || defined(PROTO)
/*
* Add the given bytes to the input buffer
* Special keys start with CSI. A real CSI must have been translated to
diff --git a/src/version.c b/src/version.c
index c519bba0dd..33eb34d28c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -48,7 +48,6 @@ static char *(features[]) = {
#endif // ifdef ALL_BUILTIN_TCAPS
"+byte_offset",
"+cindent",
- "-clientserver",
"-clipboard",
"+cmdline_compl",
"+cmdline_hist",
diff --git a/src/vim.h b/src/vim.h
index 7333ea79d7..eeab1c8aa0 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1117,8 +1117,7 @@ typedef void *vim_acl_T; /* dummy to pass an ACL to a function */
#define fnamencmp(x, y, n) vim_fnamencmp((char_u *)(x), (char_u *)(y), \
(size_t)(n))
-#if defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS) \
- || defined(FEAT_CLIENTSERVER)
+#if defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS)
# define USE_INPUT_BUF
#endif