# HG changeset patch # User Bram Moolenaar # Date 1567717203 -7200 # Node ID 397a49a22fb4200ffc5efe7efa9cda565dcac335 # Parent 9c93d5a65da33c28212d9410873a02b17b35748f patch 8.1.1990: cannot build with eval but without cscope Commit: https://github.com/vim/vim/commit/a546b21b24cb61dcff7bf4a1aa43cfbfec60ce40 Author: Bram Moolenaar Date: Thu Sep 5 22:50:11 2019 +0200 patch 8.1.1990: cannot build with eval but without cscope Problem: Cannot build with eval but without cscope. Solution: Always include if_cscope.pro. diff --git a/src/proto.h b/src/proto.h --- a/src/proto.h +++ b/src/proto.h @@ -68,9 +68,7 @@ extern int _stricoll(char *a, char *b); # include "charset.pro" # include "cmdexpand.pro" # include "cmdhist.pro" -# ifdef FEAT_CSCOPE -# include "if_cscope.pro" -# endif +# include "if_cscope.pro" # include "debugger.pro" # include "dict.pro" # include "diff.pro" diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1990, +/**/ 1989, /**/ 1988,