| Commit message (Expand) | Author | Age | Files | Lines |
* | * parse.y (rb_intern3): check symbol table overflow. | nobu | 2009-10-15 | 1 | -17/+2 |
* | * string.c (rb_check_string_type): rdoc fix [ruby-core:26084] | marcandre | 2009-10-14 | 1 | -1/+1 |
* | * string.c (rb_str_inspect): copy by chunks. | nobu | 2009-10-07 | 1 | -29/+32 |
* | * string.c (rb_str_inspect): don't assign -1 to unsigned int. | naruse | 2009-10-07 | 1 | -19/+12 |
* | * string.c (rb_str_upto): RDoc updated. a patch from Nobuhiro | matz | 2009-10-06 | 1 | -0/+8 |
* | * array.c (rb_ary_{times, shuffle_bang, sample}): reducing macro | matz | 2009-10-05 | 1 | -11/+16 |
* | Escape as \x{XXXX} other than Unicode chars. | naruse | 2009-09-29 | 1 | -8/+17 |
* | * string.c (rb_str_inspect): dump as \uXXXX when the | naruse | 2009-09-29 | 1 | -9/+21 |
* | * hash.c (rb_f_getenv): use rb_filesystem_str_new_cstr | naruse | 2009-09-28 | 1 | -0/+12 |
* | * string.c (str_buf_cat2): optimize since all second arguments are | nobu | 2009-09-27 | 1 | -5/+3 |
* | * string.c (rb_hash_{uint{32,},end}): removed. | nobu | 2009-09-27 | 1 | -8/+0 |
* | String#inspect's encoding should be fixed. | naruse | 2009-09-26 | 1 | -31/+31 |
* | * string.c: use rename-macro instead of RUBY_ALIAS_FUNCTION_TYPE. | ko1 | 2009-09-26 | 1 | -9/+4 |
* | * st.c: moved murmur hash from string.c. [ruby-dev:39376] | nobu | 2009-09-26 | 1 | -241/+14 |
* | * string.c (hash): updated to MurmurHash 2.0 2009-09-19. | nobu | 2009-09-26 | 1 | -69/+88 |
* | * string.c (rb_hash_start): fixed shift width on 128bit platform. | nobu | 2009-09-26 | 1 | -3/+3 |
* | * string.c (rb_str_upto): keep first width. [ruby-dev:39361] | nobu | 2009-09-23 | 1 | -4/+10 |
* | * string.c: added rdocs for symbol. | nobu | 2009-09-18 | 1 | -0/+88 |
* | * string.c: fixed types. | nobu | 2009-09-18 | 1 | -40/+45 |
* | Use rb_isspace for ASCII-incompatible strings. | naruse | 2009-09-15 | 1 | -4/+4 |
* | * string.c (rb_str_lstrip_bang): use ascii_isspace(). [ruby-dev:39322] | matz | 2009-09-14 | 1 | -5/+5 |
* | * string.c (rb_str_inspect): use rb_enc_mbc_to_codepoint | naruse | 2009-09-14 | 1 | -2/+1 |
* | * include/ruby/st.h (st_hash_func): use st_index_t. | nobu | 2009-09-08 | 1 | -15/+15 |
* | * string.c (rb_str_upto): generate numerical sequence when | matz | 2009-08-16 | 1 | -3/+45 |
* | * insns.def, vm.c, vm_insnhelper.c, vm_insnhelper.h: check | ko1 | 2009-08-12 | 1 | -0/+2 |
* | * string.c (rb_str_new_frozen): must not change encoding of frozen | nobu | 2009-08-12 | 1 | -3/+4 |
* | * string.c (tr_trans): change condition of singlebyte optimization. | naruse | 2009-08-01 | 1 | -2/+1 |
* | Can't use singlebyte optimization when the replacement is multibyte. [ruby-c... | naruse | 2009-07-31 | 1 | -1/+2 |
* | * string.c (rb_str_hash_cmp): got rid of overflow. | nobu | 2009-07-18 | 1 | -1/+1 |
* | Check pos and strlen on Regexp#index(str, pos) [ruby-core:23660] | naruse | 2009-07-14 | 1 | -0/+2 |
* | * hash.c (rb_hash_hash): documentation fix. a patch from | matz | 2009-07-01 | 1 | -8/+13 |
* | * re.c (reg_match_pos): adjust offset based on characters, not | matz | 2009-06-30 | 1 | -3/+8 |
* | * array.c (rb_ary_memsize): added. | ko1 | 2009-06-16 | 1 | -0/+11 |
* | * string.c (str_replace_shared): shared target must be frozen. | nobu | 2009-06-11 | 1 | -2/+9 |
* | * string.c (rb_str_gsub_bang): modify check at the beginning. | matz | 2009-06-02 | 1 | -6/+10 |
* | * string.c (rb_str_each_char, rb_str_each_codepoint): string | nobu | 2009-05-25 | 1 | -2/+3 |
* | * string.c (rb_str_hash): avoid calling rb_enc_str_asciionly_p(). | matz | 2009-05-25 | 1 | -24/+31 |
* | * string.c (rb_str_rpartition): ditto. | nobu | 2009-05-24 | 1 | -0/+1 |
* | * string.c (rb_str_partition): should use the converted result. a | nobu | 2009-05-24 | 1 | -0/+1 |
* | * string.c (rb_str_each_char): return original string. | matz | 2009-05-23 | 1 | -2/+5 |
* | * string.c (rb_str_count): optimized for 1byte string count by | matz | 2009-05-21 | 1 | -6/+18 |
* | * encoding.c (rb_enc_fast_mbclen): faster mbclen for strings known | matz | 2009-05-20 | 1 | -25/+68 |
* | * encoding.c (rb_enc_codepoint_len): combine rb_enc_codepoint() | matz | 2009-05-19 | 1 | -40/+42 |
* | rdoc update. | akr | 2009-05-09 | 1 | -2/+11 |
* | * string.c, include/ruby/encoding.h: fixed types. | nobu | 2009-05-07 | 1 | -21/+22 |
* | * string.c (rb_str_split_m): faster processing on 7bit strings. | matz | 2009-04-20 | 1 | -9/+53 |
* | * string.c (rb_str_dump): buffer length plus one byte for null | mame | 2009-04-08 | 1 | -1/+1 |
* | * string.c (rb_str_rstrip_bang): should not sign-expand non-ascii. | nobu | 2009-04-08 | 1 | -1/+2 |
* | * string.c (rb_str_chop_bang): reset coderange. [ruby-core:23155] | naruse | 2009-04-08 | 1 | -1/+1 |
* | * dir.c, dln.c, parse.y, re.c, ruby.c, sprintf.c, strftime.c, | nobu | 2009-03-17 | 1 | -3/+3 |