From 2f5bd9d6d7c0a1520713e63b941f7f7c7dfd340e Mon Sep 17 00:00:00 2001 From: ser Date: Fri, 12 Aug 2005 12:08:52 +0000 Subject: * Fixed the inheritance bug in the pull parser that James Britt found. * Indentation changes, and changed some exceptions to runtime exceptions. * Backed out the patch that changed the versions * Wasn't including Text class. * Fixes issue:25 (Trac) * Fixes ticket:3 (Issue38 in Roundup.) * Numerous fixes in the XPath interpreter correcting, among other things, ordering bugs and some incorrect behavior. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/attribute.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/rexml/attribute.rb') diff --git a/lib/rexml/attribute.rb b/lib/rexml/attribute.rb index a5a58055b..a169148f3 100644 --- a/lib/rexml/attribute.rb +++ b/lib/rexml/attribute.rb @@ -101,20 +101,20 @@ module REXML end @unnormalized = nil - @value = @normalized = Text::normalize( @value, doctype ) + @normalized = Text::normalize( @value, doctype ) end # Returns the UNNORMALIZED value of this attribute. That is, entities # have been expanded to their values def value - @unnormalized if @unnormalized + return @unnormalized if @unnormalized doctype = nil if @element doc = @element.document doctype = doc.doctype if doc end @normalized = nil - @value = @unnormalized = Text::unnormalize( @value, doctype ) + @unnormalized = Text::unnormalize( @value, doctype ) end # Returns a copy of this attribute -- cgit