# HG changeset patch # User Christian Brabandt # Date 1508067904 -7200 # Node ID f74372f5db886b6c280db95ffd5e5d500a6632e0 # Parent c49d77dd0e13675c358f88f7dcf59147252855a7 patch 8.0.1196: crash when t_RF is not set commit https://github.com/vim/vim/commit/a20f83df1d646a2d296af835ba1154f09986f102 Author: Bram Moolenaar Date: Sun Oct 15 13:35:01 2017 +0200 patch 8.0.1196: crash when t_RF is not set Problem: Crash when t_RF is not set. (Brian Pina) Solution: Add t_RF to the list of terminal options. (Hirohito Higashi) diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -3141,6 +3141,7 @@ static struct vimoption options[] = p_term("t_ms", T_MS) p_term("t_nd", T_ND) p_term("t_op", T_OP) + p_term("t_RF", T_RFG) p_term("t_RB", T_RBG) p_term("t_RC", T_CRC) p_term("t_RI", T_CRI) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1196, +/**/ 1195, /**/ 1194,