# HG changeset patch # User Christian Brabandt # Date 1483963205 -3600 # Node ID 5c0a28604bd0f8cede59ba8c59403991eb5b82fc # Parent a7e05f5bbcea8761e49e581f758ea7a3d7e50846 patch 8.0.0161: can't build with small features commit https://github.com/vim/vim/commit/4d0504019cc744a5122821f187dd3adfe536afff Author: Bram Moolenaar Date: Mon Jan 9 12:58:11 2017 +0100 patch 8.0.0161: can't build with small features Problem: Build fails when using small features. Solution: Update #ifdef for using save_ccline. (Hirohito Higashi) diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -212,7 +212,8 @@ getcmdline( #endif expand_T xpc; long *b_im_ptr = NULL; -#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA) +#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) \ + || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CMDWIN) /* Everything that may work recursively should save and restore the * current command line in save_ccline. That includes update_screen(), a * custom status line may invoke ":normal". */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 161, +/**/ 160, /**/ 159,