* lib/rexml/quickpath.rb: escape '[' to avoid warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-06-16 05:03:03 +00:00
parent 8b684d1926
commit 4b0115beb5
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ module REXML
results = filter([element], path)
when /^\*/u
results = filter(element.to_a, path)
when /^[[!\w:]/u
when /^[\[!\w:]/u
# match on child
matches = []
children = element.to_a