# HG changeset patch # User Christian Brabandt # Date 1465677005 -7200 # Node ID fd81f36cd5b61c657a04df2d8a3324631b9c1d9b # Parent 89edc68b9e5c6dd5588ffb8ac716236eda69cc2a commit https://github.com/vim/vim/commit/724f2edf75bf084665b3e2cdfa7ab66ccb1b5c0c Author: Bram Moolenaar Date: Sat Jun 11 22:21:17 2016 +0200 patch 7.4.1921 Problem: vim_time() not included when needed. Solution: Adjust #ifdef. diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -2818,7 +2818,7 @@ write_viminfo_barlines(vir_T *virp, FILE } #endif /* FEAT_VIMINFO */ -#if defined(FEAT_VIMINFO) || defined(PROTO) +#if defined(FEAT_CMDHIST) || defined(FEAT_VIMINFO) || defined(PROTO) /* * Return the current time in seconds. Calls time(), unless test_settime() * was used. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1921, +/**/ 1920, /**/ 1919,