summaryrefslogtreecommitdiffstats
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
commit31337dda766be480852cf869896beeb875bdd575 (patch)
tree5e4ad39cd73252d8fef9420cea3566f0a6c57f0c /lib
parent1f78571b73604f2745b7c0824eee5351a6b66085 (diff)
downloadruby-31337dda766be480852cf869896beeb875bdd575.tar.gz
ruby-31337dda766be480852cf869896beeb875bdd575.tar.xz
ruby-31337dda766be480852cf869896beeb875bdd575.zip
* lib/net/imap.rb: accept NOMODSEQ. [ruby-core:9002]
git-svn-id: http://svn.ruby-lang.org/repos/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 21f85bf57..d7c34ad96 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)