aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * include/ruby/ruby.h (CONST_ID): constant ID cache for non-gcc.nobu2008-06-091-1/+3
* * array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,ko12008-06-081-4/+4
* * string.c (hash): should be "static".ko12008-06-041-1/+1
* * suppress warnings with -Wwrite-string.nobu2008-05-311-1/+2
* * string.c (rb_usascii_str_new): use rb_str_new.naruse2008-05-201-8/+5
* * string.c (rb_enc_strlen_cr): need to set ENC_CODERANGE_7BIT ifmatz2008-05-201-15/+35
* * regparse.c (PINC): use optimized enclen() instead ofmatz2008-05-191-1/+1
* * string.c (tr_find): String#delete returned wrong result when multiplemame2008-05-151-5/+5
* * string.c (rb_str_cat): fixed buffer overrun reported bymatz2008-05-131-1/+1
* * string.c (sym_to_i): really removed. [ruby-dev:34641]matz2008-05-121-21/+0
* * string.c (tr_trans): should not turn on modify flag if nomatz2008-05-101-1/+0
* * string.c (tr_trans): should check src size, not str size.matz2008-05-101-1/+1
* * string.c (tr_trans): single '^' does not mean negation.matz2008-05-101-1/+3
* * string.c (rb_str_each_line): zero length record separator shouldmatz2008-05-101-3/+7
* * thread.c (rb_thread_key_p): thread local storage stores ID.nobu2008-05-071-1/+0
* * string.c (tr_trans): should squeeze properly. [ruby-dev:34587]matz2008-05-071-41/+51
* * string.c (rb_str_each_line): return original string.akr2008-05-041-2/+3
* * string.c (rb_enc_cr_str_buf_cat): do not use C++ comment.shyouhei2008-04-221-1/+1
* * string.c (rb_str_intern): need not to check if tainted.matz2008-04-061-3/+0
* * re.c (rb_memsearch_ss): simple shift search.naruse2008-03-171-1/+1
* * encoding.c (rb_enc_associate_index): pass unnecessary enc_capable().matz2008-03-151-5/+9
* * include/ruby/ruby.h (inttypes.h): includes always if available.nobu2008-03-141-4/+0
* * string.c (UNALIGNED_WORD_ACCESS): IA64 cannot access unaligned word.nobu2008-03-141-1/+1
* * trunk/configure.in (AC_CHECK_HEADERS): stdint.h is not needed to check.nobu2008-03-131-4/+4
* * configure.in (stdint.h): check if presence.nobu2008-03-121-6/+101
* * string.c (hash): replaced by MurmurHash described inmatz2008-03-111-113/+32
* * string.c (rb_str_comparable): empty strings in any encoding arematz2008-03-111-4/+7
* * string.c (rb_str_index): if t == s + pos, the character beginningnaruse2008-03-091-1/+1
* fix doc.akr2008-03-091-11/+13
* * string.c (search_nonascii): Use VALUE instead of unsigned longnaruse2008-03-081-35/+33
* * string.c (count_utf8_lead_bytes_with_ulong): fix shift size.naruse2008-03-051-4/+3
* * string.c (is_utf8_lead_byte, count_utf8_lead_bytes_with_ulong):naruse2008-03-051-35/+35
* * numeric.c (fix_to_s): avoid rb_scan_args() when no argumentmatz2008-03-051-11/+21
* * string.c (sym_inspect): use rb_str_inspect() instead ofmatz2008-03-011-1/+1
* * string.c (tr_setup_table, rb_str_split_m, rb_str_chomp_bang):nobu2008-03-011-25/+14
* * string.c (rb_str_coderange_scan_restartable): should not returnmatz2008-03-011-3/+3
* * test/ruby/test_m17n_comb.rb (TestM17NComb::test_str_chomp): testmatz2008-02-291-1/+1
* * string.c (rb_str_chomp_bang): now works on UTF-16.matz2008-02-291-24/+63
* * time.c (time_strftime): format should be ascii compatible.matz2008-02-291-0/+11
* * string.c (rb_str_rpartition): calculation was done in byte indexing.matz2008-02-291-3/+4
* * string.c (str_new): remove encoding assumption of empty string.naruse2008-02-281-3/+0
* * string.c (rb_enc_str_copy): removed.naruse2008-02-281-12/+0
* * string.c (rb_str_reverse_bang): removed unsed variables.nobu2008-02-281-1/+0
* * include/ruby/encoding.h (rb_str_coderange_scan_restartable): addednobu2008-02-281-9/+8
* * string.c (rb_str_coderange_scan_restartable): coderange scaningnaruse2008-02-271-0/+55
* * string.c (str_sublen): removed.naruse2008-02-231-12/+6
* * string.c (rb_enc_cr_str_copy_for_substr): renamed fromnaruse2008-02-231-22/+37
* * fix missing STR_ENC_GET.naruse2008-02-221-1/+1
* * add ascii incompatible case.naruse2008-02-221-1/+2
* * string.c (rb_enc_cr_str_copy): check string's coderange is 7bit ornaruse2008-02-221-2/+11