diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-19 17:43:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-19 17:43:09 +0100 |
commit | 32526b3c1846025f0e655f41efd4e5428da16b6c (patch) | |
tree | e9f3ea5e0daaada049e905b5f1b38b4a45511f3d /src/if_ruby.c | |
parent | d383c92ec1d14ffd5c3802f0ffd763e91d547fa8 (diff) | |
download | vim-git-32526b3c1846025f0e655f41efd4e5428da16b6c.tar.gz |
patch 8.1.0779: argument for message functions is inconsistentv8.1.0779
Problem: Argument for message functions is inconsistent.
Solution: Make first argument to msg() "char *".
Diffstat (limited to 'src/if_ruby.c')
-rw-r--r-- | src/if_ruby.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/if_ruby.c b/src/if_ruby.c index fb1b25b5e..9c91f3177 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -1057,11 +1057,11 @@ static void error_print(int state) # ifdef RUBY21_OR_LATER bt = rb_funcallv(error, rb_intern("backtrace"), 0, 0); for (i = 0; i < RARRAY_LEN(bt); i++) - msg_attr((char_u *)RSTRING_PTR(RARRAY_AREF(bt, i)), attr); + msg_attr(RSTRING_PTR(RARRAY_AREF(bt, i)), attr); # else bt = rb_funcall2(error, rb_intern("backtrace"), 0, 0); for (i = 0; i < RARRAY_LEN(bt); i++) - msg_attr((char_u *)RSTRING_PTR(RARRAY_PTR(bt)[i]), attr); + msg_attr(RSTRING_PTR(RARRAY_PTR(bt)[i]), attr); # endif break; default: @@ -1083,11 +1083,11 @@ static VALUE vim_message(VALUE self UNUSED, VALUE str) strcpy(buff, RSTRING_PTR(str)); p = strchr(buff, '\n'); if (p) *p = '\0'; - MSG(buff); + msg(buff); } else { - MSG(""); + msg(""); } return Qnil; } @@ -1641,7 +1641,7 @@ static VALUE f_p(int argc, VALUE *argv, VALUE self UNUSED) if (i > 0) rb_str_cat(str, ", ", 2); rb_str_concat(str, rb_inspect(argv[i])); } - MSG(RSTRING_PTR(str)); + msg(RSTRING_PTR(str)); if (argc == 1) ret = argv[0]; |