summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-10 00:19:12 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-10 00:19:12 +0100
commit91e22eb6e09ec384496fccde812072033fd9e616 (patch)
tree9c5f0efad19754abdf2adec48aa719b18932ab0e
parent4c054e9fb23027b55a09ee647a3a2c91936aeb1b (diff)
patch 8.1.2283: missed on use of p_sbrv8.1.2283
Problem: Missed on use of p_sbr. Solution: Add missing p_sbr change.
-rw-r--r--src/indent.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index 4abe05b2d3..755c3a9e44 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -887,7 +887,7 @@ get_breakindent_win(
// indent minus the length of the showbreak string
if (wp->w_p_brisbr)
- bri -= vim_strsize(p_sbr);
+ bri -= vim_strsize(get_showbreak_value(wp));
// Add offset for number column, if 'n' is in 'cpoptions'
bri += win_col_off2(wp);
diff --git a/src/version.c b/src/version.c
index 9d2025f3a7..d8eedea522 100644
--- 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 */
/**/
+ 2283,
+/**/
2282,
/**/
2281,