ruby-changes:35148
From: hsbt <ko1@a...>
Date: Thu, 21 Aug 2014 12:24:21 +0900 (JST)
Subject: [ruby-changes:35148] hsbt:r47230 (trunk): * lib/net/imap.rb: removed commented-out code.
hsbt 2014-08-21 12:24:06 +0900 (Thu, 21 Aug 2014) New Revision: 47230 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47230 Log: * lib/net/imap.rb: removed commented-out code. Modified files: trunk/ChangeLog trunk/lib/net/imap.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 47229) +++ ChangeLog (revision 47230) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Aug 21 12:23:56 2014 SHIBATA Hiroshi <shibata.hiroshi@g...> + + * lib/net/imap.rb: removed commented-out code. + Wed Aug 20 17:27:02 2014 Nobuyoshi Nakada <nobu@r...> * configure.in (RUBY_TRY_CFLAGS, RUBY_TRY_LDFLAGS), Index: lib/net/imap.rb =================================================================== --- lib/net/imap.rb (revision 47229) +++ lib/net/imap.rb (revision 47230) @@ -3082,39 +3082,6 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/imap.rb#L3082 return Address.new(name, route, mailbox, host) end -# def flag_list -# result = [] -# match(T_LPAR) -# while true -# token = lookahead -# case token.symbol -# when T_RPAR -# shift_token -# break -# when T_SPACE -# shift_token -# end -# result.push(flag) -# end -# return result -# end - -# def flag -# token = lookahead -# if token.symbol == T_BSLASH -# shift_token -# token = lookahead -# if token.symbol == T_STAR -# shift_token -# return token.value.intern -# else -# return atom.intern -# end -# else -# return atom -# end -# end - FLAG_REGEXP = /\ (?# FLAG )\\([^\x80-\xff(){ \x00-\x1f\x7f%"\\]+)|\ (?# ATOM )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\]+)/n -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/