From 724f2edf75bf084665b3e2cdfa7ab66ccb1b5c0c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 11 Jun 2016 22:21:17 +0200 Subject: [PATCH] patch 7.4.1921 Problem: vim_time() not included when needed. Solution: Adjust #ifdef. --- src/ex_cmds.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 893a5ae35..b3b920939 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -2818,7 +2818,7 @@ write_viminfo_barlines(vir_T *virp, FILE *fp_out) } #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 index af8d684b0..6dc2efb57 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1921, /**/ 1920, /**/ -- 2.50.1