summaryrefslogtreecommitdiff
path: root/lib/irb/xmp.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-17 08:59:54 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-17 08:59:54 +0000
commitfa1bec3664c43fa58bb83a3711d61d88a2eb65ed (patch)
tree6fb34e5e7134896756e57a361fd04f2780ed6881 /lib/irb/xmp.rb
parent9cd0874fc2d52bb0e42f5a1f363f854139d8fe64 (diff)
* lib/irb/xmp.rb: multilingualizes XMP::StringInputMethod.
[ruby-core:21383]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/xmp.rb')
-rw-r--r--lib/irb/xmp.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/irb/xmp.rb b/lib/irb/xmp.rb
index 851852cd3e..af87b48887 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