aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * re.c (rb_reg_initialize_m): should raise exception instead ofmatz2004-11-171-8/+5
* * string.c (str_mod_check): frozen check should be separated.matz2004-11-161-1/+12
* * array.c (rb_ary_update): pedantic check to detectmatz2004-11-151-3/+4
* * string.c (rb_str_clear): avoid revealing NULL pointer.matz2004-11-141-4/+5
* * dir.c (rb_glob2): do not allocate buffer from heap to avoidmatz2004-11-101-8/+8
* * string.c (str_gsub): should have removed rb_str_unlocktmp(str).matz2004-11-041-1/+0
* * string.c (str_gsub): string modify check no longer based onmatz2004-11-041-6/+5
* * gc.c (gc_mark): enable GC stack checking.matz2004-11-041-0/+5
* * array.c (rb_ary_uniq_bang): do not push frozen string from hashmatz2004-11-031-2/+2
* * io.c (rb_f_open): create copy of popen specifier. [ruby-dev:24656]matz2004-10-311-0/+20
* * string.c (str_gsub): use STR_NOCAPA.nobu2004-10-271-1/+1
* * node.h (NODE_TYPESHIFT): allow 4 more bits for line numbers.matz2004-10-271-10/+12
* * string.c (str_gsub): use a string object for exception safeness.nobu2004-10-271-28/+30
* * string.c (rb_str_include): should not treat char as negative value.nobu2004-10-211-9/+2
* * parse.y (lex_getline): should not touch ruby_debug_lines ifmatz2004-10-201-0/+3
* * io.c (read_all): block string buffer modification duringmatz2004-10-191-0/+1
* * indent and tabifynobu2004-10-191-38/+38
* * string.c (rb_str_upto): method result must be checked. [ruby-dev:24504]nobu2004-10-181-9/+10
* * io.c (rb_io_mode_flags): preserve append mode flag.matz2004-10-061-12/+8
* * string.c (rb_str_sum): should use bignums when bits is greatermatz2004-10-021-1/+1
* * string.c (rb_str_sum): wrong cast caused wrong result.matz2004-10-021-16/+16
* * string.c (rb_str_sum): check was done with false pointer.matz2004-10-021-4/+4
* * string.c (rb_str_sum): string may be altered. [ruby-dev:24381]matz2004-10-011-8/+26
* * parse.y (rb_parser_append_print): should handle prelude.matz2004-09-241-0/+5
* * array.c (rb_ary_delete): element comparison might change arraymatz2004-09-171-2/+3
* * dir.c (free_dir): fix memory leak. reported by yamamotomatz2004-08-191-0/+26
* * io.c (rb_io_reopen): should clear allocated OpenFile. pointedmatz2004-08-171-5/+6
* * range.c (rb_range_beg_len): returns Qnil only when "beg" pointsmatz2004-07-241-1/+2
* * string.c (rb_str_match_m): String#match should also takematz2004-07-171-5/+14
* * string.c (str_new4): should share shared instance if it alreadymatz2004-06-051-3/+2
* * range.c (range_each_func): terminates loop if generating valuematz2004-05-141-1/+1
* * parse.y (string_content): turn off NODE_NEWLINE flag to avoidmatz2004-05-071-5/+5
* * array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,nobu2004-04-141-2/+2
* * exception message clean-up by Ian Macdonald <ian@caliban.org>.matz2004-03-291-5/+5
* * eval.c (rb_yield_0): should not re-submit TAG_BREAK if thismatz2004-03-151-2/+2
* * string.c (rb_str_match): raise TypeError when both arguments areusa2004-02-101-25/+2
* Add RDoc for kernel functions, and tidy updave2003-12-301-4/+148
* * string.c (rb_str_update): don't return any value.usa2003-12-251-1/+1
* * string.c (rb_str_update): call rb_str_modify().matz2003-12-251-8/+18
* MG added RDoc comments to string.cdave2003-12-241-0/+1145
* * string.c (rb_str_update): get rid of SEGV at just allocated String.nobu2003-11-301-1/+3
* * string.c: add #include "version.h". this file still depends on it.usa2003-11-051-0/+1
* * class.c, hash.c, string.c: remove #include "version.h".eban2003-11-041-1/+0
* * io.c (read_all): fptr->f may be NULL, if IO is closed in thematz2003-11-041-18/+7
* * string.c (rb_str_hash): Update the HASH_PERL alternative hashknu2003-11-011-2/+6
* * string.c (rb_str_upto): ("a"..."a").to_a should return [].matz2003-10-161-1/+3
* * string.c (str_new4): should not preserve FL_TAINT status in thematz2003-10-131-10/+3
* * eval.c (mark_frame_adj): need to adjust argv pointer if usingmatz2003-09-051-9/+9
* * eval.c (rb_eval): *a = [1,2] now assigns [[1,2]] to a.matz2003-08-271-1/+1
* * enum.c (inject_i): use rb_yield_values.matz2003-08-221-1/+1