Patch 8.2.4125
Problem: Completion tests fail.
Solution: Disable error messages while dereferencing the function name.
Files: src/eval.c
*** ../vim-8.2.4124/src/eval.c 2022-01-17 20:09:02.848881517 +0000
--- src/eval.c 2022-01-17 21:06:07.338705919 +0000
***************
*** 709,715 ****
--- 709,717 ----
// The name might be "import.Func" or "Funcref".
arg = func;
+ ++emsg_off;
name = deref_function_name(&arg, &tofree, &EVALARG_EVALUATE, FALSE);
+ --emsg_off;
if (name == NULL)
name = func;
*** ../vim-8.2.4124/src/version.c 2022-01-17 20:50:36.491316623 +0000
--- src/version.c 2022-01-17 21:12:53.654866522 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4125,
/**/
--
Individualists unite!
/// 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/20220117211358.341581C044E%40moolenaar.net.