# File rexml/text.rb, line 110
  def Text.parse_stream source, listener
			md = source.match(PATTERN, true)
			raise "no text to add" if md[0].length == 0
			string = md[1]
			string = Text::unnormalize(string)
			listener.text string
		end