summaryrefslogtreecommitdiffhomepage
path: root/src/error.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-11-18 16:24:42 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-11-18 16:24:42 -0800
commitf9b14f49e6415ff9dcb0d5dee11c93f6fec5ec5c (patch)
treef8f080c8d11c501d5382d21021d073b39cad53b1 /src/error.h
parente4c2f9c14fac2c0dbc6b7489c9637ea25846da19 (diff)
parentaacadb23657fb244821aac891a3eec8aac2f707a (diff)
downloadmruby-f9b14f49e6415ff9dcb0d5dee11c93f6fec5ec5c.tar.gz
mruby-f9b14f49e6415ff9dcb0d5dee11c93f6fec5ec5c.zip
Merge pull request #1584 from cremno/rename-mrb_exc_new3
renamed mrb_exc_new3 to mrb_exc_new_str
Diffstat (limited to 'src/error.h')
-rw-r--r--src/error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.h b/src/error.h
index 5aa4ca374..4d120e989 100644
--- a/src/error.h
+++ b/src/error.h
@@ -9,7 +9,7 @@
void mrb_sys_fail(mrb_state *mrb, const char *mesg);
int sysexit_status(mrb_state *mrb, mrb_value err);
-mrb_value mrb_exc_new3(mrb_state *mrb, struct RClass* c, mrb_value str);
+mrb_value mrb_exc_new_str(mrb_state *mrb, struct RClass* c, mrb_value str);
mrb_value make_exception(mrb_state *mrb, int argc, mrb_value *argv, int isstr);
mrb_value mrb_make_exception(mrb_state *mrb, int argc, mrb_value *argv);
mrb_value mrb_format(mrb_state *mrb, const char *format, ...);