summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-04-02 22:17:10 +0200
committerBram Moolenaar <Bram@vim.org>2014-04-02 22:17:10 +0200
commit5a50c2255c447838d08d3b4895a3be3a41cd8eda (patch)
treefcf0f3294276c6f7e7a27c252c1f7d521c691ba1 /src/proto
parentb7cb42bc3878fcb62ed407f47f0a2cc960aa7c1e (diff)
downloadvim-5a50c2255c447838d08d3b4895a3be3a41cd8eda.zip
updated for version 7.4.243
Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/ops.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ops.pro b/src/proto/ops.pro
index 3631256a3..0710ec611 100644
--- a/src/proto/ops.pro
+++ b/src/proto/ops.pro
@@ -56,6 +56,7 @@ char_u get_reg_type __ARGS((int regname, long *reglen));
char_u *get_reg_contents __ARGS((int regname, int flags));
void write_reg_contents __ARGS((int name, char_u *str, int maxlen, int must_append));
void write_reg_contents_ex __ARGS((int name, char_u *str, int maxlen, int must_append, int yank_type, long block_len));
+void write_reg_contents_lst __ARGS((int name, char_u **strings, int maxlen, int must_append, int yank_type, long block_len));
void clear_oparg __ARGS((oparg_T *oap));
void cursor_pos_info __ARGS((void));
/* vim: set ft=c : */