# HG changeset patch # User vimboss # Date 1189078417 0 # Node ID 4238b697bfff46433c49d60cc20b43761ab3c128 # Parent 826f00fef9e338c7afebef68658716bb0aab62f4 updated for version 7.1-097 diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -6348,7 +6348,7 @@ did_set_string_option(opt_idx, varp, new errmsg = check_stl_option(p_ruf); } /* check 'statusline' only if it doesn't start with "%!" */ - else if (varp != &p_stl || s[0] != '%' || s[1] != '!') + else if (varp == &p_ruf || s[0] != '%' || s[1] != '!') errmsg = check_stl_option(s); if (varp == &p_ruf && errmsg == NULL) comp_col(); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 97, +/**/ 96, /**/ 95,