summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-10-15 13:35:01 +0200
committerBram Moolenaar <Bram@vim.org>2017-10-15 13:35:01 +0200
commita20f83df1d646a2d296af835ba1154f09986f102 (patch)
tree1657211ac9e112d5121b1c0d2b825daff3dae332
parent9377df3ecd0bd3acb5d46cb8af7fe60867f247f2 (diff)
downloadvim-git-a20f83df1d646a2d296af835ba1154f09986f102.tar.gz
patch 8.0.1196: crash when t_RF is not setv8.0.1196
Problem: Crash when t_RF is not set. (Brian Pina) Solution: Add t_RF to the list of terminal options. (Hirohito Higashi)
-rw-r--r--src/option.c1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index 2743f1607..baa8d855c 100644
--- 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
index 5e87e258f..0fcc596e7 100644
--- 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,