mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.3.057
Problem: Segfault with command line abbreviation. (Randy Morris) Solution: Don't retrigger the abbreviation when abandoning the command line. Continue editing the command line after the error.
This commit is contained in:
parent
bf55e1442d
commit
66b4bf8980
@ -712,7 +712,11 @@ getcmdline(firstc, count, indent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
beep_flush();
|
beep_flush();
|
||||||
c = ESC;
|
got_int = FALSE; /* don't abandon the command line */
|
||||||
|
did_emsg = FALSE;
|
||||||
|
emsg_on_display = FALSE;
|
||||||
|
redrawcmd();
|
||||||
|
goto cmdline_not_changed;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
else
|
else
|
||||||
|
@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
57,
|
||||||
/**/
|
/**/
|
||||||
56,
|
56,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user