| Commit message (Expand) | Author | Age | Files | Lines |
* | * array.c (rb_values_at): extract common procedure from | matz | 2003-07-03 | 1 | -3/+5 |
* | * class.c (rb_define_class, rb_define_module): also set constant under | nobu | 2003-07-01 | 1 | -27/+1 |
* | * variable.c (autoload_delete): should delete Qundef from iv_tbl. | matz | 2003-06-25 | 1 | -1/+2 |
* | * parse.y (new_yield): distinguish "yield 1,2" and "yield [1,2]". | matz | 2003-06-20 | 1 | -2/+44 |
* | * eval.c (proc_alloc): re-unification of Block and Proc. Block | matz | 2003-06-16 | 1 | -1/+1 |
* | * gc.c (define_final): eliminate rb_f_lambda() call. | matz | 2003-06-06 | 1 | -1/+1 |
* | * variable.c (rb_autoload_load): autoloaded constants under a module | nobu | 2003-06-01 | 1 | -10/+0 |
* | * variable.c (rb_autoload_load): should delete autoloaded | nobu | 2003-05-29 | 1 | -2/+15 |
* | * eval.c (ev_const_defined, ev_const_get), variable.c | nobu | 2003-05-29 | 1 | -127/+191 |
* | * io.c (set_stdio): $stdin, $stdout, $stderr now became read-only. | matz | 2003-05-15 | 1 | -1/+1 |
* | * variable.c (rb_mod_name): always return empty string for | matz | 2003-04-10 | 1 | -29/+27 |
* | * variable.c (rb_mod_name): search module path if classname is not | matz | 2003-04-09 | 1 | -3/+3 |
* | * variable.c (rb_class_path): hold temporary class path in a | nobu | 2003-03-28 | 1 | -1/+10 |
* | * eval.c (rb_call0): should not report uninitialized warning by | matz | 2003-02-18 | 1 | -3/+22 |
* | * variable.c (rb_obj_classname): wrong tail recursion. | nobu | 2003-01-31 | 1 | -1/+1 |
* | * variable.c (rb_obj_classname): new function. | matz | 2003-01-31 | 1 | -0/+7 |
* | Updated Copyrights of Matz to 2003. | michal | 2003-01-16 | 1 | -1/+1 |
* | * st.h, st.c: Introduce new conventional typedef's, st_data_t, | knu | 2003-01-06 | 1 | -28/+28 |
* | * numeric.c (num_step): use DBL_EPSILON. | matz | 2002-12-19 | 1 | -4/+8 |
* | README.EXT: grammer updates by Simon Cozens. | matz | 2002-10-23 | 1 | -1/+1 |
* | * variable.c (rb_global_entry): not add global entry until | nobu | 2002-10-16 | 1 | -2/+2 |
* | * regex.c (re_match): p1 may exceed pend limit. | matz | 2002-09-26 | 1 | -3/+0 |
* | * eval.c (rb_mod_nesting): load wrapping module should appear in | matz | 2002-09-17 | 1 | -0/+1 |
* | * variable.c (rb_path2class): should not use rb_eval_string(). | matz | 2002-09-05 | 1 | -8/+29 |
* | * variable.c (rb_copy_generic_ivar): remove old generic instance | matz | 2002-09-03 | 1 | -1/+9 |
* | * variable.c (rb_const_assign): st_delete() takes pointer to key. | nobu | 2002-08-30 | 1 | -1/+1 |
* | variable.c: Get rid of fix len buffer in rb_class_path (ruby-core:381) | michal | 2002-08-28 | 1 | -5/+10 |
* | * eval.c (rb_clear_cache_by_class): new function. | matz | 2002-05-14 | 1 | -1/+1 |
* | * io.c (rb_io_mode_flags): both 'r+b' and 'rb+' should be allowed. | matz | 2002-04-24 | 1 | -4/+1 |
* | * eval.c (assign): ruby_verbose should be surrounded by RTEST(). | matz | 2002-04-11 | 1 | -9/+7 |
* | * variable.c (rb_obj_remove_instance_variable): raise NameError if | matz | 2002-04-10 | 1 | -13/+18 |
* | * variable.c (rb_const_list): a temporary table must be freed. | nobu | 2002-03-20 | 1 | -0/+1 |
* | * marshal.c (w_object): module inclusion using extend() should | matz | 2002-03-11 | 1 | -0/+1 |
* | * eval.c (rb_eval): replace rb_cvar_declare() by rb_cvar_set(). | matz | 2002-02-15 | 1 | -31/+5 |
* | * parse.y (stmt): local variable declaration order was changed | matz | 2002-02-13 | 1 | -18/+0 |
* | * object.c (rb_class_real): should not follow ICLASS link | matz | 2002-02-04 | 1 | -2/+6 |
* | * st.c: primes should be primes. | matz | 2002-01-16 | 1 | -1/+1 |
* | * time.c (time_plus): result should not be negative unless | matz | 2001-12-21 | 1 | -9/+9 |
* | * string.c (rb_str_replace): swap arguments of OBJ_INFECT. | matz | 2001-12-18 | 1 | -0/+3 |
* | * string.c (rb_str_match_m): should convert an argument into | matz | 2001-12-11 | 1 | -3/+2 |
* | * signal.c (sighandle): should not re-register sighandler if | matz | 2001-11-13 | 1 | -13/+24 |
* | * parse.y (str_extend): shuould allow interpolation of $-x. | matz | 2001-10-29 | 1 | -18/+21 |
* | * variable.c (rb_global_entry): reconstruct global variable | nobu | 2001-10-22 | 1 | -99/+82 |
* | * variable.c (remove_trace): should not access already freed area. | nobu | 2001-10-21 | 1 | -2/+3 |
* | * variable.c (alias_fixup): added. ad hoc support for ordinary | nobu | 2001-10-17 | 1 | -4/+55 |
* | * marshal.c (r_object): better allocation type check for | matz | 2001-10-03 | 1 | -2/+7 |
* | * eval.c (is_defined): should not dump core for "defined?(())". | matz | 2001-08-23 | 1 | -2/+5 |
* | * range.c (range_step): 'iter' here should be an array. | matz | 2001-08-20 | 1 | -2/+29 |
* | * range.c (range_step): new method. | matz | 2001-08-14 | 1 | -0/+3 |
* | * regex.c (NUM_FAILURE_ITEMS): was confusing NUM_REG_ITEMS and | matz | 2001-07-18 | 1 | -1/+1 |