mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
error.c(rb_error_write): Remove ec_ from its name
It's unrelated to rb_execution_context_t during writing the patch r61154 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61161 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
29e1f56e23
commit
d18fb887ea
2 changed files with 4 additions and 4 deletions
|
@ -188,7 +188,7 @@ print_backtrace(const VALUE eclass, const VALUE errat, const VALUE str, int reve
|
|||
}
|
||||
|
||||
void
|
||||
rb_ec_error_write(VALUE errinfo, VALUE errat, VALUE str)
|
||||
rb_error_write(VALUE errinfo, VALUE errat, VALUE str)
|
||||
{
|
||||
volatile VALUE eclass = Qundef, emesg = Qundef;
|
||||
|
||||
|
@ -231,7 +231,7 @@ rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo)
|
|||
errat = rb_get_backtrace(errinfo);
|
||||
}
|
||||
|
||||
rb_ec_error_write(errinfo, errat, Qnil);
|
||||
rb_error_write(errinfo, errat, Qnil);
|
||||
|
||||
EC_POP_TAG();
|
||||
ec->errinfo = errinfo;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue