mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.0466: not parsing messages recursively breaks the govim plugin
Problem: Not parsing messages recursively breaks the govim plugin. Solution: When called recursively do handle messages but do not close channels.
This commit is contained in:
parent
599c89c82f
commit
09c569038c
@ -4428,16 +4428,14 @@ channel_parse_messages(void)
|
|||||||
int ret = FALSE;
|
int ret = FALSE;
|
||||||
int r;
|
int r;
|
||||||
ch_part_T part = PART_SOCK;
|
ch_part_T part = PART_SOCK;
|
||||||
static int recursive = FALSE;
|
static int recursive = 0;
|
||||||
#ifdef ELAPSED_FUNC
|
#ifdef ELAPSED_FUNC
|
||||||
elapsed_T start_tv;
|
elapsed_T start_tv;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// The code below may invoke callbacks, which might call us back.
|
// The code below may invoke callbacks, which might call us back.
|
||||||
// That doesn't work well, just return without doing anything.
|
// In a recursive call channels will not be closed.
|
||||||
if (recursive)
|
++recursive;
|
||||||
return FALSE;
|
|
||||||
recursive = TRUE;
|
|
||||||
++safe_to_invoke_callback;
|
++safe_to_invoke_callback;
|
||||||
|
|
||||||
#ifdef ELAPSED_FUNC
|
#ifdef ELAPSED_FUNC
|
||||||
@ -4453,6 +4451,8 @@ channel_parse_messages(void)
|
|||||||
did_repeated_msg = REPEATED_MSG_LOOKING;
|
did_repeated_msg = REPEATED_MSG_LOOKING;
|
||||||
}
|
}
|
||||||
while (channel != NULL)
|
while (channel != NULL)
|
||||||
|
{
|
||||||
|
if (recursive == 1)
|
||||||
{
|
{
|
||||||
if (channel_can_close(channel))
|
if (channel_can_close(channel))
|
||||||
{
|
{
|
||||||
@ -4481,6 +4481,8 @@ channel_parse_messages(void)
|
|||||||
part = PART_SOCK;
|
part = PART_SOCK;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (channel->ch_part[part].ch_fd != INVALID_FD
|
if (channel->ch_part[part].ch_fd != INVALID_FD
|
||||||
|| channel_has_readahead(channel, part))
|
|| channel_has_readahead(channel, part))
|
||||||
{
|
{
|
||||||
@ -4521,7 +4523,7 @@ channel_parse_messages(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
--safe_to_invoke_callback;
|
--safe_to_invoke_callback;
|
||||||
recursive = FALSE;
|
--recursive;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -738,6 +738,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
466,
|
||||||
/**/
|
/**/
|
||||||
465,
|
465,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user