mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0657: get error for using regexp recursively
Problem: Get error for using regexp recursively. (Dominique Pelle) Solution: Do no check if connection is desired.
This commit is contained in:
parent
c0c7549687
commit
01e51e5b30
@ -1742,8 +1742,8 @@ x_IOerror_handler(Display *dpy UNUSED)
|
|||||||
static void
|
static void
|
||||||
may_restore_clipboard(void)
|
may_restore_clipboard(void)
|
||||||
{
|
{
|
||||||
// Only try restoring if we want the connection.
|
// No point in restoring the connecting if we are exiting or dying.
|
||||||
if (x_connect_to_server() && xterm_dpy_retry_count > 0)
|
if (!exiting && !v_dying && xterm_dpy_retry_count > 0)
|
||||||
{
|
{
|
||||||
--xterm_dpy_retry_count;
|
--xterm_dpy_retry_count;
|
||||||
|
|
||||||
|
@ -799,6 +799,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 */
|
||||||
|
/**/
|
||||||
|
657,
|
||||||
/**/
|
/**/
|
||||||
656,
|
656,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user