aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * variable.c (trace_ev): Removed "not reached" comment as this line isdrbrain2012-04-141-3/+6
* * string.c (rb_str_tr): Documented use of \ to escape characters.drbrain2012-04-101-15/+41
* * string.c (rb_str_split_m): Documented behavior of split on the emptydrbrain2012-04-101-0/+5
* * string.c (rb_str_start_with, rb_str_end_with): raise an error ifnobu2012-04-021-4/+4
* * string.c (str_new_empty): should copy also the encoding as annobu2012-03-271-0/+1
* * string.c (tr_setup_table): fix multiple non latin argument fornaruse2012-03-251-3/+7
* * bignum.c (rb_str_to_inum): must be ASCII compatible encoding asnobu2012-03-231-10/+9
* * string.c (trnext): fix bug with string ending with '\\'.kazu2012-03-161-2/+2
* * string.c (trnext): should advance char-wise.nobu2012-03-161-4/+4
* * string.c (rb_str_conv_enc_opts): default to original encoding.nobu2012-03-151-0/+1
* * include/ruby/intern.h: Add rb_check_arity, rb_error_arity [#6085]marcandre2012-03-141-25/+12
* * string.c (rb_str_aref): Improve rdoc, as per [bug #6106]marcandre2012-03-061-10/+10
* * ext/bigdecimal/lib/bigdecimal/math.rb: remove description aboutnaruse2012-03-051-1/+1
* Paranoia: /^/ -> /\A/ in regexp in rdoc. Pointed out by nobu.knu2012-02-271-2/+2
* * string.c (rb_str_crypt): Update rdoc and state that thisknu2012-02-271-6/+13
* * string.c (rb_str_prepend): Fix documentation for String#prepend.ayumin2012-02-241-3/+3
* * string.c (rb_str_modify_expand): fix memory leak.nobu2012-02-081-4/+12
* * string.c (rb_str_concat): set array element after definitionngoto2012-01-111-1/+2
* * numeric.c (rb_enc_uint_char): raise RangeError when added codepointnaruse2012-01-081-9/+34
* * string.c (str_nth_len): count ascii-only run at the end. thisnobu2012-01-041-0/+1
* * whitespace cleanup.nobu2011-11-041-3/+3
* * use RB_TYPE_P which is optimized for constant types, instead ofnobu2011-09-291-13/+13
* * string.c (tr_trans): free heap ptr when the str is not embeded.naruse2011-07-011-0/+3
* * internal.h: declare internal functions here.akr2011-06-171-4/+1
* * string.c: Fix the ambiguous description of the behavior ofmrkn2011-06-091-1/+2
* Clarified String#tr rdoc. (RickHull)ryan2011-06-011-9/+12
* * string.c (rb_str_bytesize): rb_str_bytesize() should use LONG2NUM().kosaki2011-05-271-1/+1
* * string.c: Improve documentation for String#start_with? andnaruse2011-05-091-4/+4
* * string.c (rb_to_id): remove unused variable.kosaki2011-04-241-2/+1
* * string.c (rb_str_each_line): check string's length when comparenaruse2011-04-201-1/+2
* cancel subversion backfire. sorrymatz2011-03-071-1/+1
* * gc.c (rb_gc_set_params): allow GC parameter configuration bymatz2011-03-071-1/+1
* * string.c (tr_trans): suppress signedness/unsignedness warnings.nobu2011-03-071-2/+2
* * string.c (rb_str_slice_bang): raise error when the string is frozen.naruse2011-03-031-1/+1
* * string.c (str_byte_substr): return nil for negative length.nobu2011-03-021-27/+29
* * string.c (rb_str_slice_bang): move treatments which is only needednaruse2011-03-021-4/+4
* * string.c (rb_str_byteslice): the resulted encoding should keepnaruse2011-03-011-5/+4
* Fix rdoc of String#byteslice. Feature #4447naruse2011-03-011-1/+2
* * string.c (rb_str_byteslice): Add String#byteslice. [ruby-core:35376]naruse2011-03-011-0/+103
* * string.c (tr_trans): when the hash for multibyte repl is empty,naruse2011-02-281-1/+1
* * string.c (rb_enc_cr_str_buf_cat): remove special treatment ofnaruse2011-02-151-3/+3
* Ensure result encoding is the same as input encoding for String#gsub. [Bug #...drbrain2011-02-061-0/+1
* * string.c (str_utf8_nth): fixed a conditon of optimized leadkosaki2011-02-041-1/+1
* * string.c (count_utf8_lead_bytes_with_word): wrote functionkosaki2011-02-031-0/+17
* * string.c (rb_str_ellipsize): new function to ellipsize a string.nobu2011-01-301-0/+51
* * include/ruby/ruby.h (ALLOCV): new API for exception-safenobu2011-01-261-0/+18
* * string.c (=~): documentation fix; the return value is nil whennaruse2011-01-261-1/+1
* * string.c (rb_str_resize): get rid of out-of-bound access.nobu2011-01-241-1/+2
* * string.c (rb_string_value_cstr): rb_str_modify can changenobu2011-01-241-1/+5
* * string.c (str_nth_len, str_utf8_nth): return the rest length together.nobu2011-01-221-14/+32