mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.0569: build failure with tiny version
Problem: Build failure with tiny version. Solution: Add #ifdef.
This commit is contained in:
@@ -4764,9 +4764,11 @@ ex_blast(exarg_T *eap)
|
||||
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');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user