changeset 15681:ef9c89680e7f v8.1.0848

patch 8.1.0848: cannot build with Ruby 1.8 commit https://github.com/vim/vim/commit/b191be2f0000bf1de09a79226cfd405d9387caa3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 30 21:00:12 2019 +0100 patch 8.1.0848: cannot build with Ruby 1.8 Problem: Cannot build with Ruby 1.8. (Tom G. Christensen) Solution: Use rb-str_new2(). (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/3883, closes #3884)
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Jan 2019 21:15:06 +0100
parents 78587768d8ac
children e871f9bd86c1
files src/if_ruby.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/if_ruby.c
+++ b/src/if_ruby.c
@@ -1262,7 +1262,7 @@ static VALUE vim_blob(VALUE self UNUSED,
     for (i = 0; i < RSTRING_LEN(str); i++)
     {
 	sprintf(buf, "%02X", RSTRING_PTR(str)[i]);
-	rb_str_concat(result, rb_str_new_cstr(buf));
+	rb_str_concat(result, rb_str_new2(buf));
     }
     return result;
 }
--- a/src/version.c
+++ b/src/version.c
@@ -784,6 +784,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    848,
+/**/
     847,
 /**/
     846,