aboutsummaryrefslogtreecommitdiff
path: root/src/ui.c
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-03-17 11:05:41 +0100
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-05 10:01:21 -0300
commit2fe018ab888010335ad8fc041522e2aff66c67a1 (patch)
treea903d1933f737568b2f6fc6516d25cdd5ce80fff /src/ui.c
parent23dc43919e8235425ee1ca433a09afe12445ecc2 (diff)
downloadrneovim-2fe018ab888010335ad8fc041522e2aff66c67a1.tar.gz
rneovim-2fe018ab888010335ad8fc041522e2aff66c67a1.tar.bz2
rneovim-2fe018ab888010335ad8fc041522e2aff66c67a1.zip
Remove netbeans and sun workshop
Diffstat (limited to 'src/ui.c')
-rw-r--r--src/ui.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ui.c b/src/ui.c
index 0c9a86d618..8cc123a3e3 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -292,17 +292,7 @@ void ui_breakcheck(void)
* descriptions which would otherwise overflow. The buffer is considered full
* when only this extra space (or part of it) remains.
*/
-#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
- || defined(FEAT_CLIENTSERVER)
-/*
- * Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
- * This requires a larger buffer...
- * (Madsen) Go with this for remote input as well ...
- */
-# define INBUFLEN 4096
-#else
# define INBUFLEN 250
-#endif
static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
static int inbufcount = 0; /* number of chars in inbuf[] */