Skip to content

Commit 86c4bca

Browse files
committed
merge revision(s) 15900:
* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and @n_bytes as well. [ruby-core:16144] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17228 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 4563397 commit 86c4bca

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Sun Jun 15 21:26:54 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2+
3+
* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and
4+
@n_bytes as well. [ruby-core:16144]
5+
16
Sun Jun 15 21:07:37 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* lib/resolv.rb (Resolv::Config.default_config_hash): requires

lib/net/pop.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,8 @@ def finish
462462

463463
def do_finish
464464
@mails = nil
465+
@n_mails = nil
466+
@n_bytes = nil
465467
@command.quit if @command
466468
ensure
467469
@started = false

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-06-15"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20080615
5-
#define RUBY_PATCHLEVEL 190
5+
#define RUBY_PATCHLEVEL 191
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)