From 12cbb588193ac5148b6421fc8953c817acb0ae9f Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 19 Oct 2010 03:22:03 +0000 Subject: * test/ruby/test_sprintf.rb: fix ML ref. [ruby-core:32848] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- transcode.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'transcode.c') diff --git a/transcode.c b/transcode.c index 17bad37e27..cd4829f291 100644 --- a/transcode.c +++ b/transcode.c @@ -2711,9 +2711,7 @@ str_encode_bang(int argc, VALUE *argv, VALUE str) VALUE newstr; int encidx; - if (OBJ_FROZEN(str)) { /* in future, may use str_frozen_check from string.c, but that's currently static */ - rb_raise(rb_eRuntimeError, "string frozen"); - } + rb_check_frozen(str); newstr = str; encidx = str_transcode(argc, argv, &newstr); -- cgit v1.2.3