diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-10 22:31:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-13 14:11:26 -0300 |
commit | 8eb67404f00c789fc5e8ef723105be2b0aff85cd (patch) | |
tree | 154d948564ba3607efc27aa98877c8775f05ebb4 /src/api/vim.h | |
parent | 4dc34bc0e052320feebdc3a9aed0df1d3e8af181 (diff) | |
download | rneovim-8eb67404f00c789fc5e8ef723105be2b0aff85cd.tar.gz rneovim-8eb67404f00c789fc5e8ef723105be2b0aff85cd.tar.bz2 rneovim-8eb67404f00c789fc5e8ef723105be2b0aff85cd.zip |
API: Refactor buffer_{get,set}_line
They are now implemented on top of the buffer_{get,set}_slice functions
Diffstat (limited to 'src/api/vim.h')
-rw-r--r-- | src/api/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/vim.h b/src/api/vim.h index 19de6554a6..2205760d8b 100644 --- a/src/api/vim.h +++ b/src/api/vim.h @@ -54,7 +54,7 @@ String vim_get_current_line(Error *err); /// /// @param line The line contents /// @param[out] err Details of an error that may have occurred -void vim_set_current_line(Object line, Error *err); +void vim_set_current_line(String line, Error *err); /// Gets a global or special variable /// |