Patch 8.2.4569
Problem: Coverity warning for not using a return value.
Solution: Add "(void)".
Files: src/popupwin.c
*** ../vim-8.2.4568/src/popupwin.c 2022-01-29 15:19:19.546172430 +0000
--- src/popupwin.c 2022-03-15 10:19:59.287521481 +0000
***************
*** 3738,3744 ****
{
// compute the position in the buffer line
// from the position in the window
! mouse_comp_pos(wp, &line_cp, &col_cp,
&lnum, plines_cache);
redrawWinline(wp, lnum);
}
--- 3738,3744 ----
{
// compute the position in the buffer line
// from the position in the window
! (void)mouse_comp_pos(wp, &line_cp, &col_cp,
&lnum, plines_cache);
redrawWinline(wp, lnum);
}
*** ../vim-8.2.4568/src/version.c 2022-03-15 09:46:50.757054758 +0000
--- src/version.c 2022-03-15 10:20:41.583486663 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4569,
/**/
--
hundred-and-one symptoms of being an internet addict:
266. You hear most of your jokes via e-mail instead of in person.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ 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/20220315102324.191951C42FC%40moolenaar.net.