summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-04 04:13:34 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-04 04:13:34 +0000
commitffdb9dc6bd9b621330be9f97f2e7295b5bae5a24 (patch)
tree5e4ad39cd73252d8fef9420cea3566f0a6c57f0c /lib
parent8625520d4c861fc56f648c2fbe31f76447bb05a4 (diff)
* lib/net/imap.rb: accept NOMODSEQ. [ruby-core:9002]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/imap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb
index 21f85bf57c..d7c34ad961 100644
--- a/lib/net/imap.rb
+++ b/lib/net/imap.rb
@@ -2637,7 +2637,7 @@ module Net
token = match(T_ATOM)
name = token.value.upcase
case name
- when /\A(?:ALERT|PARSE|READ-ONLY|READ-WRITE|TRYCREATE)\z/n
+ when /\A(?:ALERT|PARSE|READ-ONLY|READ-WRITE|TRYCREATE|NOMODSEQ)\z/n
result = ResponseCode.new(name, nil)
when /\A(?:PERMANENTFLAGS)\z/n
match(T_SPACE)