Skip to content

Commit 67e558f

Browse files
committed
merge revision(s) 15924:
* re.c (rb_reg_quote): should always copy the quoting string. [ruby-core:16235] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 86c4bca commit 67e558f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
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:57:19 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
2+
3+
* re.c (rb_reg_quote): should always copy the quoting string.
4+
[ruby-core:16235]
5+
16
Sun Jun 15 21:26:54 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
27

38
* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and

re.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ rb_reg_quote(str)
17541754
goto meta_found;
17551755
}
17561756
}
1757-
return str;
1757+
return rb_str_new3(str);
17581758

17591759
meta_found:
17601760
tmp = rb_str_new(0, RSTRING(str)->len*2);

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 191
5+
#define RUBY_PATCHLEVEL 192
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)