aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * array.c (rb_ary_cycle): typo in rdoc. a patch from Yuguimatz2007-09-061-6/+9
* * string.c (rb_str_succ, rb_str_chop_bang, rb_str_chop): m17n support.nobu2007-09-061-26/+100
* * string.c (rb_str_splice): integer overflow for length.matz2007-09-051-1/+1
* * string.c (tr_trans, rb_str_squeeze_bang, rb_str_split_m): suppressnobu2007-08-301-2/+3
* * string.c (str_gsub): should not use mbclen2() which has broken API.matz2007-08-291-2/+4
* * string.c (rb_str_subseq): retrieve substring based on byte offset.matz2007-08-281-15/+27
* * string.c (rb_str_splice_0): should check to modify. [ruby-dev:31665]nobu2007-08-281-0/+1
* * string.c (rb_str_each_line): should swallow sequence of newlinesmatz2007-08-271-1/+7
* * string.c (rb_str_rstrip_bang): wrong strip point. [ruby-dev:31652]matz2007-08-271-2/+2
* * string.c (sym_encoding): return the encoding of a Symbol.nobu2007-08-271-1/+7
* * string.c (tr_trans): wrong condition for mbmaxlen==1 strings.matz2007-08-271-4/+5
* * string.c, include/ruby/intern.h: export rb_str_length().ko12007-08-251-1/+1
* * string.c (rb_str_splice): return from void funtion.nobu2007-08-251-3/+3
* * encoding.c: provide basic features for M17N.matz2007-08-251-393/+718
* * array.c (rb_ary_s_try_convert): a new class method to convertmatz2007-08-241-0/+18
* * string.c (Init_String): remove Symbol.intern and Symbol#dump.matz2007-08-201-19/+0
* * insnhelper.ci, string.c: fixed indent.nobu2007-08-181-1/+1
* * string.c (rb_str_resize): fix indent.nobu2007-07-211-1/+1
* * string.c (rb_str_rindex_m): accept string-like object convertiblenobu2007-07-161-39/+45
* * string.c (rb_str_clear): need to check STR_EMBED_P() beforematz2007-06-261-1/+1
* update document to follow MatchData#inspect implementation.akr2007-06-231-1/+1
* * string.c (rb_str_upto): add optional argument to specifymatz2007-06-221-31/+30
* * include/ruby: moved public headers.nobu2007-06-101-2/+2
* * parse.y, compile.c, gc.c, insns.def, intern.h, iseq.c, node.h,matz2007-02-231-28/+0
* * string.c (rb_str_ord): need not to check string length; ordmatz2007-02-231-5/+0
* * re.c (reg_operand): allow symbols to be operands for regularmatz2007-02-141-0/+8
* * parse.y (rb_compose_ivar2): function to create a new ivar2matz2007-02-041-0/+28
* * ruby.h (SYMBOL_P): make Symbol immediate again for performance. matz2007-02-021-115/+105
* * string.c (rb_str_sub_bang): calling rb_str_modify() should be justusa2007-01-301-1/+1
* * eval_proc.c (rb_proc_new): added.ko12007-01-161-4/+1
* * string.c (rb_str_upto): use RSTRING_LEN().matz2007-01-081-1/+1
* * string.c (rb_str_upto): String#upto from empty string makesmatz2007-01-081-1/+1
* * Merge YARVko12006-12-311-8/+11
* * string.c (rb_str_ord): typo fixed. reported from Korneliusmatz2006-12-211-1/+1
* * string.c (rb_str_slice_bang): rdoc description bug fixed.matz2006-12-211-4/+1
* * string.c (rb_str_aset): index double decode problem.matz2006-12-111-1/+1
* * string.c (Init_String): remove duplicated definition ofmatz2006-11-061-1/+0
* * parse.y (arg_dup_check): vid may be nameless internal id.matz2006-11-061-1/+1
* * string.c: class Symbol is no longer subclass of String. alsomatz2006-11-021-1/+56
* * string.c (hash): use Bob Jenkins' hash algorithm.matz2006-11-011-88/+114
* * string.c (rb_str_upcase, rb_str_downcase, rb_str_downcase,matz2006-10-221-0/+8
* * string.c (rb_str_substr): should be infected with only originalnobu2006-10-221-4/+7
* * string.c (rb_str_each_line): String#lines now works when a blockmatz2006-10-181-25/+20
* * string.c (rb_str_lines): now takes optional argument for thematz2006-10-161-4/+4
* * string.c (rb_str_partition): RDoc update. a patch frommatz2006-10-121-5/+2
* * string.c (rb_str_scan): small documentation fix.matz2006-10-071-1/+1
* * string.c (rb_str_lines): returns an Enumerator instead of anmatz2006-10-021-23/+20
* * string.c (rb_str_startwith): rename startwith? to start_with?,matz2006-09-271-6/+6
* * array.c (rb_ary_shift): shift/unshift performance boost patch,matz2006-09-261-0/+8
* * string.c (rb_str_partition): no need to call rb_call_super(),matz2006-09-221-5/+2