mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/imap.rb (getquota_response): use astring for mailbox
names. * lib/net/imap.rb (getacl_response): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
edaf0477a5
commit
2fc66e2841
2 changed files with 10 additions and 4 deletions
|
@ -1,4 +1,12 @@
|
|||
Tue Nov 6 14:17:14 2001 Amos Gouaux <amos+ruby@utdallas.edu>
|
||||
|
||||
* lib/net/imap.rb (getquota_response): use astring for mailbox
|
||||
names.
|
||||
|
||||
* lib/net/imap.rb (getacl_response): ditto.
|
||||
|
||||
Sat Nov 3 22:28:51 2001 Keiju Ishitsuka <keiju@ishitsuka.com>
|
||||
|
||||
* matrix.rb (Matrix#column_vectors, Matrix#row_vectors): ditto bug.
|
||||
this bug report and fix by tsutomu@nucba.ac.jp.
|
||||
|
||||
|
|
|
@ -1980,8 +1980,7 @@ module Net
|
|||
token = match(T_ATOM)
|
||||
name = token.value.upcase
|
||||
match(T_SPACE)
|
||||
token = match(T_ATOM)
|
||||
mailbox = token.value
|
||||
mailbox = astring
|
||||
match(T_SPACE)
|
||||
match(T_LPAR)
|
||||
match(T_ATOM)
|
||||
|
@ -2000,8 +1999,7 @@ module Net
|
|||
token = match(T_ATOM)
|
||||
name = token.value.upcase
|
||||
match(T_SPACE)
|
||||
token = match(T_ATOM)
|
||||
mailbox = token.value
|
||||
mailbox = astring
|
||||
token = lookahead
|
||||
if token.symbol == T_SPACE
|
||||
shift_token
|
||||
|
|
Loading…
Reference in a new issue