* lib/net/imap.rb: allow extra spaces in responses.

Thanks, Tom Soderlund.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2006-09-20 00:45:08 +00:00
Родитель d3f545235a
Коммит 92d28f6b8f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1785,7 +1785,7 @@ module Net
T_TEXT = :TEXT T_TEXT = :TEXT
BEG_REGEXP = /\G(?:\ BEG_REGEXP = /\G(?:\
(?# 1: SPACE )( )|\ (?# 1: SPACE )( +)|\
(?# 2: NIL )(NIL)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\ (?# 2: NIL )(NIL)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\
(?# 3: NUMBER )(\d+)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\ (?# 3: NUMBER )(\d+)(?=[\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+])|\
(?# 4: ATOM )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+]+)|\ (?# 4: ATOM )([^\x80-\xff(){ \x00-\x1f\x7f%*"\\\[\]+]+)|\