mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 03:58:32 +00:00
strings.c: replace copy_spaces, copy_chars with equivalent memset.
This commit is contained in:
@@ -2139,7 +2139,7 @@ fill_foldcolumn (
|
||||
int empty;
|
||||
|
||||
/* Init to all spaces. */
|
||||
copy_spaces(p, (size_t)wp->w_p_fdc);
|
||||
memset(p, ' ', (size_t)wp->w_p_fdc);
|
||||
|
||||
level = win_foldinfo.fi_level;
|
||||
if (level > 0) {
|
||||
|
Reference in New Issue
Block a user