# HG changeset patch # User Bram Moolenaar # Date 1403810696 -7200 # Node ID 3248c6e40aee01a7254d111dd846c6ec7889a804 # Parent e11fcef662897ffee5ca22706841c39c1cf7d10e updated for version 7.4.346 Problem: Indent is not updated when changing 'breakindentopt'. (itchyny) Solution: Do not cache "brishift". (Christian Brabandt) diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -513,11 +513,11 @@ get_breakindent_win(wp, line) prev_ts = wp->w_buffer->b_p_ts; prev_tick = wp->w_buffer->b_changedtick; prev_indent = get_indent_str(line, - (int)wp->w_buffer->b_p_ts, wp->w_p_list) + wp->w_p_brishift; - } + (int)wp->w_buffer->b_p_ts, wp->w_p_list); + } + bri = prev_indent + wp->w_p_brishift; /* indent minus the length of the showbreak string */ - bri = prev_indent; if (wp->w_p_brisbr) bri -= vim_strsize(p_sbr); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 346, +/**/ 345, /**/ 344,