From e5cff158cf2bfd553227d5669f080e7c6d21c514 Mon Sep 17 00:00:00 2001 From: ser Date: Fri, 10 Oct 2003 12:58:23 +0000 Subject: * Forgot to update the MANIFEST, WRT the removal of files from the rexml/encodings directory * Missed a regexp speed optimization in rexml/parsers/baseparser.rb git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/parsers/baseparser.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/rexml/parsers/baseparser.rb b/lib/rexml/parsers/baseparser.rb index 27c9642a6..276af0338 100644 --- a/lib/rexml/parsers/baseparser.rb +++ b/lib/rexml/parsers/baseparser.rb @@ -168,8 +168,7 @@ module REXML @source.read if @source.buffer.size==0 if @document_status == nil @source.consume( /^\s*/um ) - word = @source.match( /(<.*?)>/um ) - #word = @source.match_to( '>', /(<.*?)>/um ) + word = @source.match( /(<[^>]*)>/um ) word = word[1] unless word.nil? case word when COMMENT_START -- cgit