aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * marshal.c (dump_ensure), process.c (run_exec_dup2),nobu2008-08-041-4/+3
* * string.c (rb_str_shared_replace): fixed memory leak. a patch fromnobu2008-08-031-4/+4
* * string.c (sym_inspect): remove dead code.mame2008-07-301-5/+1
* * include/ruby/intern.h, sprintf.c (rb_str_catf, rb_str_vcatf): newnobu2008-07-221-0/+14
* * include/ruby/intern.h (rb_str_buf_new2): optimization for literals.nobu2008-07-211-2/+3
* * include/ruby/intern.h (rb_str_buf_cat2, rb_str_cat2): optimizationnobu2008-07-211-0/+2
* * string.c (rb_str_succ): alphabets or numerics mutually enclosingnobu2008-07-081-8/+17
* * string.c (rb_str_succ): limit carrying in an alphanumeric region ifnobu2008-07-071-3/+6
* * string.c (rb_str_format_m): make tmp volatile to avoid possible GCakr2008-06-291-1/+1
* * include/ruby/ruby.h (struct RRegexp): new field usecnt. replaceakr2008-06-281-1/+1
* * include/ruby/intern.h (rb_str_new2, rb_tainted_str_new2,nobu2008-06-271-0/+4
* * string.c (rb_str_index_m, rb_str_rindex_m, rb_str_include): fixmame2008-06-261-14/+9
* * array.c (rb_ary_store, rb_ary_splice): not depend on unspecifiednobu2008-06-201-43/+27
* * string.c (rb_str_sub_bang): should preserve replacement pointsmatz2008-06-201-9/+11
* * string.c (rb_memhash): randomize hash to avoid algorithmicakr2008-06-201-2/+10
* * array.c (ary_new, rb_ary_initialize, rb_ary_store,shyouhei2008-06-191-0/+3
* * string.c (str_gsub): should preserve last successful matchmatz2008-06-191-18/+17
* * string.c (str_alloc): specify 'inline' modifier.matz2008-06-191-7/+2
* * string.c (rb_str_scan): String#scan should preserve lastmatz2008-06-191-4/+7
* * io.c (read_all): should use io_read_encoding(), notmatz2008-06-111-3/+0
* * 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