# HG changeset patch # User Bram Moolenaar # Date 1580767204 -3600 # Node ID 104c163131ccef02d48c2ffdbe721c42b508077d # Parent eb662829cb7d86069a7adf65b6eb04d589510e14 patch 8.2.0205: error code E899 used twice Commit: https://github.com/vim/vim/commit/a5edb670dcdeddc8520e012430fb256eb8470f6c Author: Bram Moolenaar Date: Mon Feb 3 22:58:48 2020 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 205, +/**/ 204, /**/ 203,