# HG changeset patch # User Christian Brabandt # Date 1447159504 -3600 # Node ID 5fad7bc0fe83aee33790d58640ef4957536dfb3b # Parent 1e5c9739fc1ceb725db9faa74453f0271d8d6378 commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf Author: Bram Moolenaar Date: Tue Nov 10 13:30:39 2015 +0100 patch 7.4.911 Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) Solution: Define the options. diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -2981,8 +2981,10 @@ static struct vimoption p_term("t_ce", T_CE) p_term("t_cl", T_CL) p_term("t_cm", T_CM) + p_term("t_Ce", T_UCE) p_term("t_Co", T_CCO) p_term("t_CS", T_CCS) + p_term("t_Cs", T_UCS) p_term("t_cs", T_CS) #ifdef FEAT_VERTSPLIT p_term("t_CV", T_CSV) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 911, +/**/ 910, /**/ 909,