aboutsummaryrefslogtreecommitdiffstats
path: root/ext/-test-/exception/enc_raise.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-10 10:07:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-10 10:07:07 +0000
commitf45fc7daa00faa561c1bce32b598c06e1ec0d978 (patch)
treefe81d286401abd73b9c04ffea1c2b543e4316483 /ext/-test-/exception/enc_raise.c
parenta59dd4b489a86e4a2560e8f56a642b7e87550da8 (diff)
downloadruby-f45fc7daa00faa561c1bce32b598c06e1ec0d978.tar.gz
* error.c (rb_enc_raise): new function to raise an exception with
the message in the given encoding. patched by now (Nikolai Weibull) at [ruby-core:41160]. [Feature #5650] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/exception/enc_raise.c')
-rw-r--r--ext/-test-/exception/enc_raise.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/-test-/exception/enc_raise.c b/ext/-test-/exception/enc_raise.c
new file mode 100644
index 0000000000..25410df205
--- /dev/null
+++ b/ext/-test-/exception/enc_raise.c
@@ -0,0 +1,14 @@
+#include <ruby.h>
+#include <ruby/encoding.h>
+
+static VALUE
+enc_raise(VALUE exc, VALUE encoding, VALUE mesg)
+{
+ rb_enc_raise(rb_to_encoding(encoding), exc, "%s", StringValueCStr(mesg));
+}
+
+void
+Init_enc_raise(VALUE klass)
+{
+ rb_define_module_function(klass, "enc_raise", enc_raise, 2);
+}