Patch 8.2.1180
Problem: Build failure in small version.
Solution: Add #ifdef.
Files: src/ex_docmd.c
*** ../vim-8.2.1179/src/ex_docmd.c 2020-07-11 13:40:40.408931868 +0200
--- src/ex_docmd.c 2020-07-11 14:06:33.495795452 +0200
***************
*** 2750,2759 ****
if (*p == NUL || ends_excmd(*p))
break;
}
// Avoid that "filter(arg)" is recognized.
if (in_vim9script() && !VIM_ISWHITE(*p))
break;
!
if (skip_only)
p = skip_vimgrep_pat(p, NULL, NULL);
else
--- 2750,2760 ----
if (*p == NUL || ends_excmd(*p))
break;
}
+ #ifdef FEAT_EVAL
// Avoid that "filter(arg)" is recognized.
if (in_vim9script() && !VIM_ISWHITE(*p))
break;
! #endif
if (skip_only)
p = skip_vimgrep_pat(p, NULL, NULL);
else
*** ../vim-8.2.1179/src/version.c 2020-07-11 14:04:25.196182837 +0200
--- src/version.c 2020-07-11 14:07:42.067590512 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 1180,
/**/
--
hundred-and-one symptoms of being an internet addict:
3. Your bookmark takes 15 minutes to scroll from top to bottom.
/// 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/202007111208.06BC8dHf2163101%40masaka.moolenaar.net.