ruby-changes:33064
From: kou <ko1@a...>
Date: Sat, 22 Feb 2014 23:17:30 +0900 (JST)
Subject: [ruby-changes:33064] kou:r45143 (trunk): * lib/rexml/xpath_parser.rb: Fix indent.
kou 2014-02-22 23:17:27 +0900 (Sat, 22 Feb 2014) New Revision: 45143 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45143 Log: * lib/rexml/xpath_parser.rb: Fix indent. Modified files: trunk/ChangeLog trunk/lib/rexml/xpath_parser.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 45142) +++ ChangeLog (revision 45143) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Feb 22 23:17:01 2014 Kouhei Sutou <kou@c...> + + * lib/rexml/xpath_parser.rb: Fix indent. + Sat Feb 22 23:15:35 2014 Kouhei Sutou <kou@c...> * test/rexml/xpath/test_attribute.rb: Simplify. Index: lib/rexml/xpath_parser.rb =================================================================== --- lib/rexml/xpath_parser.rb (revision 45142) +++ lib/rexml/xpath_parser.rb (revision 45143) @@ -63,19 +63,19 @@ module REXML https://github.com/ruby/ruby/blob/trunk/lib/rexml/xpath_parser.rb#L63 end def parse path, nodeset - #puts "#"*40 - path_stack = @parser.parse( path ) - #puts "PARSE: #{path} => #{path_stack.inspect}" - #puts "PARSE: nodeset = #{nodeset.inspect}" - match( path_stack, nodeset ) + #puts "#"*40 + path_stack = @parser.parse( path ) + #puts "PARSE: #{path} => #{path_stack.inspect}" + #puts "PARSE: nodeset = #{nodeset.inspect}" + match( path_stack, nodeset ) end def get_first path, nodeset - #puts "#"*40 - path_stack = @parser.parse( path ) - #puts "PARSE: #{path} => #{path_stack.inspect}" - #puts "PARSE: nodeset = #{nodeset.inspect}" - first( path_stack, nodeset ) + #puts "#"*40 + path_stack = @parser.parse( path ) + #puts "PARSE: #{path} => #{path_stack.inspect}" + #puts "PARSE: nodeset = #{nodeset.inspect}" + first( path_stack, nodeset ) end def predicate path, nodeset -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/