From b6cd104ad49384a8f4641ea8bbb847fbf71f30de Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 17 Jan 2009 08:59:54 +0000 Subject: * lib/irb/xmp.rb: multilingualizes XMP::StringInputMethod. [ruby-core:21383]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/irb/xmp.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib') diff --git a/lib/irb/xmp.rb b/lib/irb/xmp.rb index 851852cd3..af87b4888 100644 --- a/lib/irb/xmp.rb +++ b/lib/irb/xmp.rb @@ -72,8 +72,20 @@ class XMP end def puts(exps) + if @encoding and exps.encoding != @encoding + enc = Encoding.compatible?(@exps.join("\n"), exps) + if enc.nil? + raise Encoding::CompatibilityError, "Encoding in which the passed exression is encoded is not compatible to the preceding's one" + else + @encoding = enc + end + else + @encoding = exps.encoding + end @exps.concat exps.split(/\n/) end + + attr_reader :encoding end end -- cgit