# HG changeset patch # User Christian Brabandt # Date 1518175806 -3600 # Node ID a80490493c6b7bdf188c24c1423e2194c4076238 # Parent 44941d705775d63d830df5970924761a354db3dc patch 8.0.1480: patch missing change commit https://github.com/vim/vim/commit/0562532c2eee6205d225aa1dc7e3e89af0dfd990 Author: Bram Moolenaar Date: Fri Feb 9 12:28:00 2018 +0100 patch 8.0.1480: patch missing change Problem: Patch missing change. Solution: Add missing change. diff --git a/src/evalfunc.c b/src/evalfunc.c --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -7977,7 +7977,7 @@ f_mode(typval_T *argvars, typval_T *rett #ifdef FEAT_INS_EXPAND if (ins_compl_active()) buf[1] = 'c'; - else if (ctrl_x_mode == 1) + else if (ctrl_x_mode_not_defined_yet()) buf[1] = 'x'; #endif } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1480, +/**/ 1479, /**/ 1478,