Patch 8.2.0330
Problem: Build error with popup window but without terminal.
Solution: Add #ifdef.
Files: src/popupwin.c
*** ../vim-8.2.0329/src/popupwin.c 2020-02-28 22:44:43.493320733 +0100
--- src/popupwin.c 2020-02-28 22:50:56.760114459 +0100
***************
*** 3506,3512 ****
--- 3506,3514 ----
wp->w_winrow -= top_off;
wp->w_wincol -= left_extra;
// cursor position matters in terminal in job mode
+ #ifdef FEAT_TERMINAL
if (wp != curwin || !term_in_normal_mode())
+ #endif
{
wp->w_wrow += top_off;
wp->w_wcol += left_extra;
*** ../vim-8.2.0329/src/version.c 2020-02-28 22:44:43.493320733 +0100
--- src/version.c 2020-02-28 22:51:28.088012493 +0100
***************
*** 740,741 ****
--- 740,743 ----
{ /* Add new patch number below this line */
+ /**/
+ 330,
/**/
--
All true wisdom is found on T-shirts.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202002282152.01SLqKiO015379%40masaka.moolenaar.net.