0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

updated for version 7.0155

This commit is contained in:
Bram Moolenaar
2005-10-10 20:59:28 +00:00
parent 196dfbcca1
commit d5cdbeb8dd
39 changed files with 25288 additions and 566 deletions

View File

@@ -2390,6 +2390,7 @@ copy_text_attr(off, buf, len, attr)
/*
* Fill the foldcolumn at "p" for window "wp".
* Only to be called when 'foldcolumn' > 0.
*/
static void
fill_foldcolumn(p, wp, closed, lnum)
@@ -2434,7 +2435,7 @@ fill_foldcolumn(p, wp, closed, lnum)
}
}
if (closed)
p[i] = '+';
p[i >= wp->w_p_fdc ? i - 1 : i] = '+';
}
#endif /* FEAT_FOLDING */