Patch 8.2.4127
Problem: Build failure without the +eval feature.
Solution: Add #ifdef.
Files: src/usercmd.c
*** ../vim-8.2.4126/src/usercmd.c 2022-01-17 19:06:52.458100460 +0000
--- src/usercmd.c 2022-01-17 22:15:43.658842792 +0000
***************
*** 548,553 ****
--- 548,554 ----
{
STRCPY(IObuff + len, command_complete[j].name);
len += (int)STRLEN(IObuff + len);
+ #ifdef FEAT_EVAL
if (p_verbose > 0 && cmd->uc_compl_arg != NULL
&& STRLEN(cmd->uc_compl_arg) < 200)
{
***************
*** 555,560 ****
--- 556,562 ----
STRCPY(IObuff + len + 1, cmd->uc_compl_arg);
len += (int)STRLEN(IObuff + len);
}
+ #endif
break;
}
*** ../vim-8.2.4126/src/version.c 2022-01-17 21:34:33.794266781 +0000
--- src/version.c 2022-01-17 22:16:17.614814449 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4127,
/**/
--
ARTHUR: Be quiet!
DENNIS: --but by a two-thirds majority in the case of more--
ARTHUR: Be quiet! I order you to be quiet!
WOMAN: Order, eh -- who does he think he is?
ARTHUR: I am your king!
The Quest for the Holy Grail (Monty Python)
/// 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/20220117221702.98D201C044E%40moolenaar.net.