aboutsummaryrefslogtreecommitdiffstats
path: root/marshal.c
Commit message (Expand)AuthorAgeFilesLines
* * marshal.c (r_object0): missing break. [ruby-core:09345]matz2006-10-271-0/+1
* * marshal.c (r_object0): use return value from prov given as thematz2006-10-221-23/+26
* * ruby.h (struct RArray): embed small arrays.matz2006-09-021-7/+7
* * ruby.h (struct RString): embed small strings.matz2006-08-311-21/+22
* * marshal.c (r_byte): IO#getc returns one byte string now.nobu2006-08-161-1/+1
* * sprintf.c (rb_str_format): allow %c to print one charactermatz2006-06-091-2/+2
* * ruby.h (struct RStruct): embed 3 or less elements structs.akr2006-02-051-2/+2
* * marshal.c (r_object0): fix a GC problem for reading a bignum onakr2005-12-141-1/+1
* * intern.h, struct.c (rb_struct_iv_get): constified.ocean2005-10-211-6/+6
* * bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]ocean2005-09-141-3/+3
* * array.c: moved to ANSI function style from K&R function style.ocean2005-09-121-119/+43
* * array.c: replace rb_protect_inspect() and rb_inspecting_p() bymatz2005-03-041-2/+2
* * marshal.c (r_object0): check inheritance by the internal function.nobu2004-10-181-1/+1
* * io.c (rb_fopen): mode string copy at the lowest level.matz2004-10-051-23/+26
* * array.c (rb_ary_delete): comparison may change the capacity.matz2004-09-291-2/+2
* * intern.h, struct.c (rb_struct_s_members, rb_struct_members): publicnobu2004-09-271-5/+2
* * io.c (rb_io_reopen): should clear allocated OpenFile. pointedmatz2004-08-171-0/+1
* * parse.y (newline_node): do not use NODE_NEWLINE node anymore,matz2004-01-211-1/+1
* * marshal.c (class2path): check anonymous class/module beforenobu2004-01-171-10/+7
* * marshal.c (class2path): fix typo.nobu2004-01-161-1/+1
* * marshal.c (class2path): get class path and check referable.nobu2004-01-161-4/+17
* RDoc comments added by Elliott Hughesdave2003-12-271-0/+70
* * configure.in (ac_cv_func_setitimer): moved from defines.hnobu2003-12-221-0/+3
* * gc.c (Init_stack): stack region is far smaller than usual ifmatz2003-11-221-19/+20
* * gc.c (gc_sweep): loosen page free condition to avoid add_heap()matz2003-10-201-13/+13
* * marshal.c (w_object): dump extended modules as well.matz2003-10-151-9/+21
* * marshal.c (r_object0): remove unnecessary iv restoration formatz2003-10-091-33/+19
* * pack.c (uv_to_utf8): change message to "out of range", sincematz2003-10-091-1/+3
* * marshal.c (w_object): wrong method name in the message.nobu2003-10-061-1/+1
* * marshal.c (w_object): should pass "weak" value to next level.matz2003-10-061-1/+1
* * marshal.c (w_object): instance variable dump do not cause errormatz2003-10-041-23/+32
* * time.c (time_load): restore instance variables (if any) beforematz2003-10-021-26/+47
* * marshal.c (w_symbol, w_object): get rid of warnings.nobu2003-08-161-4/+4
* * marshal.c (w_object): do not dump generic instance variable whenmatz2003-08-091-2/+2
* * marshal.c (w_object): should set `c_arg' at first.matz2003-08-081-4/+4
* * eval.c (rb_call0): update ruby_class as well as ruby_cref.matz2003-08-061-22/+21
* * eval.c (method_proc): should specify YIELD_FUNC_SVALUE.matz2003-08-041-1/+2
* * numeric.c (rb_num_coerce_relop): export function.matz2003-07-311-0/+3
* * marshal.c (w_object): marshal_dump should not take anymatz2003-07-301-1/+1
* * marshal.c (w_object): if object responds to 'marshal_dump',matz2003-07-291-6/+28
* * eval.c (ruby_cleanup): $SAFE is turned off in the finalization.matz2003-06-061-2/+1
* * io.c (rb_f_syscall): type dispatch should be based onmatz2003-05-301-1/+1
* * gc.c (run_final): use rb_thread_critical instead of DEFER_INTS.matz2003-05-221-7/+7
* * marshal.c (save_mantissa, load_mantissa): for interoperabilitynobu2003-04-221-17/+60
* * marshal.c: one more digit for decimal point. [ruby-talk:69808]nobu2003-04-211-1/+1
* * marshal.c (w_float): append least mantissa bits to get ridnobu2003-04-201-6/+62
* * struct.c (rb_struct_eql): should compare values with "eql?".matz2003-04-181-4/+4
* * marshal.c (w_object): preserve extended module on struct.nobu2003-04-091-17/+15
* * eval.c (Init_Proc): make Method and UnboundMethod independent.matz2003-04-081-2/+5
* * marshal.c (w_nbyte): should output always via rb_io_write().matz2003-03-031-58/+26