mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
Remove netbeans and sun workshop
This commit is contained in:

committed by
Thiago de Arruda

parent
23dc43919e
commit
2fe018ab88
@@ -2974,8 +2974,7 @@ static void ml_flush_line(buf_T *buf)
|
|||||||
return; /* nothing to do */
|
return; /* nothing to do */
|
||||||
|
|
||||||
if (buf->b_ml.ml_flags & ML_LINE_DIRTY) {
|
if (buf->b_ml.ml_flags & ML_LINE_DIRTY) {
|
||||||
/* This code doesn't work recursively, but Netbeans may call back here
|
/* This code doesn't work recursively. */
|
||||||
* when obtaining the cursor position. */
|
|
||||||
if (entered)
|
if (entered)
|
||||||
return;
|
return;
|
||||||
entered = TRUE;
|
entered = TRUE;
|
||||||
|
@@ -1710,10 +1710,7 @@ del_bytes (
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* If the old line has been allocated the deletion can be done in the
|
* If the old line has been allocated the deletion can be done in the
|
||||||
* existing line. Otherwise a new line has to be allocated
|
* existing line. Otherwise a new line has to be allocated.
|
||||||
* Can't do this when using Netbeans, because we would need to invoke
|
|
||||||
* netbeans_removed(), which deallocates the line. Let ml_replace() take
|
|
||||||
* care of notifying Netbeans.
|
|
||||||
*/
|
*/
|
||||||
was_alloced = ml_line_alloced(); /* check if oldp was allocated */
|
was_alloced = ml_line_alloced(); /* check if oldp was allocated */
|
||||||
if (was_alloced)
|
if (was_alloced)
|
||||||
|
@@ -1293,7 +1293,6 @@ int get_real_state(void)
|
|||||||
#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
|
#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
|
||||||
|| ((defined(FEAT_GUI_GTK)) \
|
|| ((defined(FEAT_GUI_GTK)) \
|
||||||
&& ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
|
&& ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
|
||||||
|| defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
|
|
||||||
|| defined(PROTO)
|
|| defined(PROTO)
|
||||||
/*
|
/*
|
||||||
* Change to a file's directory.
|
* Change to a file's directory.
|
||||||
|
10
src/ui.c
10
src/ui.c
@@ -292,17 +292,7 @@ void ui_breakcheck(void)
|
|||||||
* descriptions which would otherwise overflow. The buffer is considered full
|
* descriptions which would otherwise overflow. The buffer is considered full
|
||||||
* when only this extra space (or part of it) remains.
|
* 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
|
# define INBUFLEN 250
|
||||||
#endif
|
|
||||||
|
|
||||||
static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
|
static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
|
||||||
static int inbufcount = 0; /* number of chars in inbuf[] */
|
static int inbufcount = 0; /* number of chars in inbuf[] */
|
||||||
|
@@ -138,7 +138,6 @@ static char *(features[]) = {
|
|||||||
"+multi_byte",
|
"+multi_byte",
|
||||||
"+multi_lang",
|
"+multi_lang",
|
||||||
"-mzscheme",
|
"-mzscheme",
|
||||||
"-netbeans_intg",
|
|
||||||
"+path_extra",
|
"+path_extra",
|
||||||
"-perl",
|
"-perl",
|
||||||
"+persistent_undo",
|
"+persistent_undo",
|
||||||
@@ -161,7 +160,6 @@ static char *(features[]) = {
|
|||||||
"-startuptime",
|
"-startuptime",
|
||||||
#endif // ifdef STARTUPTIME
|
#endif // ifdef STARTUPTIME
|
||||||
"+statusline",
|
"+statusline",
|
||||||
"-sun_workshop",
|
|
||||||
"+syntax",
|
"+syntax",
|
||||||
"+tag_binary",
|
"+tag_binary",
|
||||||
"+tag_old_static",
|
"+tag_old_static",
|
||||||
|
Reference in New Issue
Block a user