aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/screen.c
diff options
context:
space:
mode:
authorDaniel Fairhead <daniel.fairhead@om.org>2014-12-10 07:34:59 +0000
committerDaniel Fairhead <daniel.fairhead@om.org>2014-12-12 08:11:47 +0000
commitf8e3cfe220ab1e0293781720520b7844f5351bd4 (patch)
tree9c200904a38af1536a2566663b3e135430e5ba44 /src/nvim/screen.c
parentb11ada1aba4c6d15128446b9669b5993ce937d11 (diff)
downloadrneovim-f8e3cfe220ab1e0293781720520b7844f5351bd4.tar.gz
rneovim-f8e3cfe220ab1e0293781720520b7844f5351bd4.tar.bz2
rneovim-f8e3cfe220ab1e0293781720520b7844f5351bd4.zip
strings.c: replace copy_spaces, copy_chars with equivalent memset.
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r--src/nvim/screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c
index c0a909f147..9e21676b2a 100644
--- a/src/nvim/screen.c
+++ b/src/nvim/screen.c
@@ -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) {