diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-09 03:12:25 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-09 03:12:25 +0000 |
| commit | 23d8ace77f84aac13185413835377cfe3fc61b94 (patch) | |
| tree | bad6a328f65bf6e7d1e7c634f7d893dab7c7d262 /string.c | |
| parent | 9e461b8fb016a8990c297bd72f4d2a635f8073ce (diff) | |
| download | ruby-23d8ace77f84aac13185413835377cfe3fc61b94.tar.gz ruby-23d8ace77f84aac13185413835377cfe3fc61b94.tar.xz ruby-23d8ace77f84aac13185413835377cfe3fc61b94.zip | |
* string.c (tr_find): returns true if no characters to be removed is
specified.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14151 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
| -rw-r--r-- | string.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3674,8 +3674,8 @@ tr_find(int c, char table[256], VALUE del, VALUE nodel) else { VALUE v = INT2NUM(c); - if ((del && !NIL_P(rb_hash_aref(del, v))) && - (!nodel || NIL_P(rb_hash_aref(nodel, v)))) { + if ((!del || !NIL_P(rb_hash_lookup(del, v))) && + (!nodel || NIL_P(rb_hash_lookup(nodel, v)))) { return Qtrue; } return Qfalse; |
