changeset 19293:104c163131cc v8.2.0205

patch 8.2.0205: error code E899 used twice Commit: https://github.com/vim/vim/commit/a5edb670dcdeddc8520e012430fb256eb8470f6c Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 Feb 2020 23:00:04 +0100
parents eb662829cb7d
children ce326aab4a79
files src/popupwin.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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,