Patch 8.2.0569
Problem: Build failure with tiny version.
Solution: Add #ifdef.
Files: src/ex_docmd.c
*** ../vim-8.2.0568/src/ex_docmd.c 2020-04-13 14:41:31.671954102 +0200
--- src/ex_docmd.c 2020-04-13 15:05:29.877507187 +0200
***************
*** 4764,4772 ****
--- 4764,4774 ----
int
ends_excmd(int c)
{
+ #ifdef FEAT_EVAL
if (c == '#')
// TODO: should check for preceding white space
return in_vim9script();
+ #endif
return (c == NUL || c == '|' || c == '"' || c == '\n');
}
*** ../vim-8.2.0568/src/version.c 2020-04-13 14:57:56.906352320 +0200
--- src/version.c 2020-04-13 15:06:40.425373651 +0200
***************
*** 740,741 ****
--- 740,743 ----
{ /* Add new patch number below this line */
+ /**/
+ 569,
/**/
--
Clothes make the man. Naked people have little or no influence on society.
-- Mark Twain (Samuel Clemens) (1835-1910)
/// 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/202004131307.03DD7MW2023064%40masaka.moolenaar.net.