diff src/popupwin.c @ 29046:ab7f050f4335 v8.2.5045

patch 8.2.5045: can escape a terminal popup window when the job is finished Commit: https://github.com/vim/vim/commit/10db31f9493425a20f1e53d0f214e621f16d65de Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 30 17:58:03 2022 +0100 patch 8.2.5045: can escape a terminal popup window when the job is finished Problem: Can escape a terminal popup window when the job is finished. Solution: Only check for a finished job where it is relevant. (closes #10253)
author Bram Moolenaar <Bram@vim.org>
date Mon, 30 May 2022 19:00:03 +0200
parents 5d71ed834c03
children da56650de132
line wrap: on
line diff
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -2760,7 +2760,6 @@ error_if_popup_window(int also_with_term
     if (WIN_IS_POPUP(curwin)
 # ifdef FEAT_TERMINAL
 	    && (also_with_term || curbuf->b_term == NULL)
-	    && !term_is_finished(curbuf)
 # endif
 	    )
     {