# HG changeset patch # User Bram Moolenaar # Date 1595012403 -7200 # Node ID 72bf1b368cfe1670bd2a6be575d0e1078c6efae9 # Parent 7ec1562be368a2a74ea914aaa1a9720ffaaebf14 patch 8.2.1229: build error without the eval feature Commit: https://github.com/vim/vim/commit/6e36b1c18e636549f3424546f2c20101604a2d33 Author: Bram Moolenaar Date: Fri Jul 17 20:47:51 2020 +0200 patch 8.2.1229: build error without the eval feature Problem: Build error without the eval feature. Solution: Declare starts_with_colon. Make function local. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -1649,7 +1649,7 @@ current_tab_nr(tabpage_T *tab) return nr; } - int + static int comment_start(char_u *p, int starts_with_colon UNUSED) { #ifdef FEAT_EVAL @@ -1708,8 +1708,8 @@ do_one_cmd( int save_reg_executing = reg_executing; int ni; // set when Not Implemented char_u *cmd; + int starts_with_colon = FALSE; #ifdef FEAT_EVAL - int starts_with_colon; int starts_with_quote; int vim9script = in_vim9script(); #endif diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -5,7 +5,6 @@ int do_cmdline(char_u *cmdline, char_u * int getline_equal(char_u *(*fgetline)(int, void *, int, int), void *cookie, char_u *(*func)(int, void *, int, int)); void *getline_cookie(char_u *(*fgetline)(int, void *, int, int), void *cookie); char_u *getline_peek(char_u *(*fgetline)(int, void *, int, int), void *cookie); -int comment_start(char_u *p, int starts_with_colon); int parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only); void undo_cmdmod(exarg_T *eap, int save_msg_scroll); int parse_cmd_address(exarg_T *eap, char **errormsg, int silent); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1229, +/**/ 1228, /**/ 1227,