0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00

patch 8.2.0205: error code E899 used twice

Problem:    Error code E899 used twice.
Solution:   Use E863 for the terminal in popup error.
This commit is contained in:
Bram Moolenaar 2020-02-03 22:58:48 +01:00
parent 631ebc4814
commit a5edb670dc
2 changed files with 3 additions and 1 deletions

View File

@ -2873,7 +2873,7 @@ error_if_term_popup_window()
if (WIN_IS_POPUP(curwin) && curbuf->b_term != NULL
&& term_job_running(curbuf->b_term))
{
emsg(_("E899: Not allowed for a terminal in a popup window"));
emsg(_("E863: Not allowed for a terminal in a popup window"));
return TRUE;
}
return FALSE;

View File

@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
205,
/**/
204,
/**/