-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* string.c (rb_str_chomp_bang): defer rb_str_modify() to actual
modify point. other methods, replace, tr, delete, squeeze, lstrip, and rstrip as well. * string.c (rb_str_rstrip_bang): remove trailing '\0' at the end of string. * string.c (rb_str_lstrip_bang): do not strip '\0' from the left. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Jul 27, 2003
1 parent
baf3f1c
commit dbe85f1
Showing
4 changed files
with
28 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
Mon Jul 28 01:35:32 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* string.c (rb_str_chomp_bang): defer rb_str_modify() to actual | ||
modify point. other methods, replace, tr, delete, squeeze, | ||
lstrip, and rstrip as well. | ||
|
||
* string.c (rb_str_rstrip_bang): remove trailing '\0' at the end | ||
of string. | ||
|
||
* string.c (rb_str_lstrip_bang): do not strip '\0' from the left. | ||
|
||
Sun Jul 27 21:16:30 2003 WATANABE Hirofumi <[email protected]> | ||
|
||
* ext/openssl/extconf.rb: better support MinGW. add | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters