From: Bram Moolenaar Date: Mon, 3 Feb 2020 21:58:48 +0000 (+0100) Subject: patch 8.2.0205: error code E899 used twice X-Git-Tag: v8.2.0205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5edb670dcdeddc8520e012430fb256eb8470f6c;p=vim patch 8.2.0205: error code E899 used twice Problem: Error code E899 used twice. Solution: Use E863 for the terminal in popup error. --- diff --git a/src/popupwin.c b/src/popupwin.c index 714f457fe..c43800099 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -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; diff --git a/src/version.c b/src/version.c index c3dbec81d..63461bd7c 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 205, /**/ 204, /**/