# File rexml/element.rb, line 496
    def each_element_with_text( text=nil, max=0, name=nil, &block ) # :yields: Element
      each_with_something( proc {|child| 
			    if text.nil?
			      child.has_text?
			    else
			      child.text == text
			    end
			  }, max, name, &block )
    end