From 8fd29e2019077205a9997308cf3bc05202a83ad1 Mon Sep 17 00:00:00 2001 From: ser Date: Sun, 16 May 2004 15:17:31 +0000 Subject: ------------------------------------------------------------------------ git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/encodings/US-ASCII.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rexml/encodings/US-ASCII.rb') diff --git a/lib/rexml/encodings/US-ASCII.rb b/lib/rexml/encodings/US-ASCII.rb index f4e4527c2d..fe8f6df303 100644 --- a/lib/rexml/encodings/US-ASCII.rb +++ b/lib/rexml/encodings/US-ASCII.rb @@ -6,7 +6,7 @@ module REXML array_utf8 = content.unpack('U*') array_enc = [] array_utf8.each do |num| - if num <= 0xFF + if num <= 0x7F array_enc << num else # Numeric entity (&#nnnn;); shard by Stefan Scholl -- cgit v1.2.3