aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
Commit message (Expand)AuthorAgeFilesLines
* * exception error messages updated. [ruby-core:04497]matz2005-02-281-1/+1
* * array.c (rb_ary_s_create): no need for negative argc check.matz2005-02-231-6/+0
* * process.c (proc_getpgrp): prohibit for $SAFE=2.matz2004-11-181-15/+11
* * numeric.c (flo_divmod): protect float values from GC bymatz2004-11-161-1/+1
* * gc.c (gc_mark): enable GC stack checking.matz2004-11-041-11/+11
* * string.c (rb_str_locktmp): lock string temporarily.matz2004-10-301-1/+1
* * string.c (str_gsub): reentrant check. [ruby-dev:24432]matz2004-10-201-11/+11
* * pack.c (pack_unpack): string conversion should at the top of thematz2004-10-071-0/+2
* * string.c (rb_str_sum): check was done with false pointer.matz2004-10-021-20/+37
* * hash.c (rb_hash_rehash): add iteration check. [ruby-dev:24301]matz2004-09-221-5/+7
* * array.c (rb_ary_equal): merge miss.matz2004-09-211-10/+7
* * array.c (rb_ary_uniq_bang): element size might change duringmatz2004-09-211-31/+63
* * array.c (rb_ary_equal): element size might change duringmatz2004-09-181-29/+33
* * range.c (rb_range_beg_len): returns Qnil only when "beg" pointsmatz2004-07-241-4/+2
* * array.c: rdoc patch - unified margin.ocean2004-07-131-168/+169
* * array.c: rdoc patch. merged patch from Johan Holmbergocean2004-07-131-111/+113
* * array.c, enum.c, pack.c: rdoc patch from Johan Holmbergocean2004-07-091-0/+1
* * array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,nobu2004-04-141-2/+2
* * eval.c (top_include): include in the wrapped load is done formatz2004-04-051-1/+1
* Doug Kearns's doc. patchdave2004-02-261-1/+1
* Add RDoc for kernel functions, and tidy updave2003-12-301-4/+1
* Tidy array.c rdocdave2003-12-291-2/+33
* Fix doc typosdave2003-12-231-2/+3
* Put RDoc comments into array.c, and refine rdoc/ri to deal with stuff that arosedave2003-12-161-0/+888
* * eval.c (rb_method_node): new API to retrieve method body.matz2003-11-141-2/+2
* * eval.c (rb_load): allow interrupt during loaded programmatz2003-11-061-6/+6
* * io.c (read_all): fptr->f may be NULL, if IO is closed in thematz2003-11-041-8/+3
* * eval.c (mark_frame_adj): need to adjust argv pointer if usingmatz2003-09-051-14/+13
* * eval.c (rb_call0): update ruby_class as well as ruby_cref.matz2003-08-061-3/+2
* * eval.c (BEGIN_CALLARGS): should not always reset ruby_iter,matz2003-08-011-7/+16
* * array.c (rb_ary_collect): must get length of array for eachusa2003-07-311-4/+3
* * ext/socket/socket.c (tcp_s_gethostbyname): was usingmatz2003-07-251-4/+4
* * gcc -Wall clean-up.matz2003-07-241-1/+1
* * array.c (rb_values_at): extract common procedure frommatz2003-07-031-26/+28
* * array.c (rb_ary_unshift_m): need to check number of arguments.nobu2003-06-231-1/+6
* * eval.c (ruby_cleanup): $SAFE is turned off in the finalization.matz2003-06-061-8/+42
* * array.c (push_values_at): Array#values_at should work withmatz2003-06-021-1/+26
* * eval.c (rb_yield_0): give warning for multiple values for amatz2003-05-201-1/+1
* * ext/pty/pty.c (pty_finalize_syswait): join (using Thread#value)matz2003-05-191-6/+8
* * object.c (init_copy): rename copy_object as initialize_copy,matz2003-05-191-1/+1
* * array.c (get_inspect_tbl): check whether inspect_tbl value is amatz2003-05-191-8/+26
* * array.c (rb_ary_values_at): new method to replace select(index..).matz2003-05-041-16/+28
* * string.c (rb_str_ljust): now takes optional argument to specifymatz2003-05-021-10/+3
* added some checks for request size.tadf2003-04-101-0/+4
* * eval.c (rb_f_missing): use "inspect" for T_OBJECT as well.matz2003-04-031-1/+2
* * array.c (rb_ary_aref): give warning if index is a symbol.matz2003-03-041-0/+15
* * array.c (rb_ary_to_a): return value should be an Array if thematz2003-02-101-1/+13
* typonobu2003-02-041-1/+1
* * array.c (rb_ary_equal): a == b is true when b is non T_ARRAYmatz2003-02-041-1/+6
* * object.c (Init_Object): default Object#=== now calls "=="matz2003-02-031-9/+2