Patch 8.2.3968
Problem: Build failure.
Solution: Add missing changes.
Files: src/strings.c, src/vim9compile.c
*** ../vim-8.2.3967/src/strings.c 2021-12-31 22:48:56.591368895 +0000
--- src/strings.c 2022-01-01 14:06:13.882707411 +0000
***************
*** 916,922 ****
{
clear_tv(&newtv);
clear_tv(&tv);
! emsg(_(e_stringreq));
break;
}
else
--- 916,922 ----
{
clear_tv(&newtv);
clear_tv(&tv);
! emsg(_(e_string_required));
break;
}
else
***************
*** 956,962 ****
{
if (*p == NUL)
{
! semsg(_(e_reduceempty), "String");
return;
}
if (copy_first_char_to_tv(p, rettv) == FAIL)
--- 956,962 ----
{
if (*p == NUL)
{
! semsg(_(e_reduce_of_an_empty_str_with_no_initial_value), "String");
return;
}
if (copy_first_char_to_tv(p, rettv) == FAIL)
*** ../vim-8.2.3967/src/vim9compile.c 2021-12-31 17:25:44.044304828 +0000
--- src/vim9compile.c 2022-01-01 14:05:43.050806348 +0000
***************
*** 1109,1115 ****
*dest = dest_option;
if (cmdidx == CMD_final || cmdidx == CMD_const)
{
! emsg(_(e_const_option));
return FAIL;
}
p = name;
--- 1109,1115 ----
*dest = dest_option;
if (cmdidx == CMD_final || cmdidx == CMD_const)
{
! emsg(_(e_cannot_lock_an_option));
return FAIL;
}
p = name;
*** ../vim-8.2.3967/src/version.c 2022-01-01 14:19:44.056353820 +0000
--- src/version.c 2022-01-01 14:25:35.003584628 +0000
***************
*** 751,752 ****
--- 751,754 ----
{ /* Add new patch number below this line */
+ /**/
+ 3968,
/**/
--
If Microsoft would build a car...
... Occasionally, executing a maneuver such as a left turn
would cause your car to shut down and refuse to restart, in
which case you would have to reinstall the engine.
/// 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/20220101142624.147501C0A5B%40moolenaar.net.