| Commit message (Expand) | Author | Age | Files | Lines |
* | * insnhelper.ci, vm.c: complete block parameter support. | ko1 | 2007-06-25 | 7 | -79/+152 |
* | * gc.c (RVALUE): in RVALUE and RBasic, flags must be the same type. | usa | 2007-06-25 | 2 | -1/+5 |
* | fix indent. | akr | 2007-06-25 | 1 | -4/+4 |
* | * ext/pty/extconf.rb: skip wince and win64. | usa | 2007-06-25 | 2 | -1/+5 |
* | * include/ruby/node.h (NODE_LMASK, nd_line): shouldn't use int and/or | usa | 2007-06-25 | 2 | -2/+7 |
* | * gc.h: add RUBY_ prefix to debug macros. | ko1 | 2007-06-25 | 14 | -360/+379 |
* | * eval_error.ci, eval_jump.ci, eval_method.ci, eval_safe.ci: c-mode. | nobu | 2007-06-25 | 5 | -0/+8 |
* | * eval.c: remove ruby_current_node and change eval() prototype. | ko1 | 2007-06-24 | 13 | -82/+69 |
* | * eval_*.h: rename to eval_*.ci. | ko1 | 2007-06-24 | 10 | -41/+20 |
* | * insnhelper.ci (caller_setup_args): add need_block_check option. | ko1 | 2007-06-24 | 4 | -30/+50 |
* | * call_cfunc.ci: removed. | ko1 | 2007-06-24 | 15 | -962/+932 |
* | * insns.def (invokesuper): fix error message. | ko1 | 2007-06-24 | 2 | -1/+5 |
* | * vm.c: some refactoring. | ko1 | 2007-06-24 | 22 | -312/+263 |
* | * eval_method.h (rb_add_method): fix to check 0. | ko1 | 2007-06-24 | 2 | -1/+5 |
* | * insn_send.ci: removed. | ko1 | 2007-06-24 | 8 | -384/+300 |
* | * vm_macro.def: removed. | ko1 | 2007-06-24 | 7 | -252/+242 |
* | * insnhelper.h (RESTORE_REGS): add do/while(0) around macro. | ko1 | 2007-06-24 | 4 | -61/+73 |
* | * vm.c, vm_macro.def : remove macro_eval_invoke_cfunc() and | ko1 | 2007-06-24 | 3 | -27/+34 |
* | * insns.def, vm.c: add/fix stack overflow check. | ko1 | 2007-06-24 | 3 | -3/+9 |
* | * insnhelper.h: change CHECK_STACK_OVERFLOW() to throw exception. | ko1 | 2007-06-24 | 6 | -79/+110 |
* | * proc.c (proc_to_s): used a variable before initialized. | nobu | 2007-06-24 | 2 | -10/+14 |
* | * vm.c (callee_setup_arg): added. support correct post arg. | ko1 | 2007-06-24 | 7 | -210/+691 |
* | * proc.c (proc_to_s): suppress warning, and reduced duplicated code. | nobu | 2007-06-24 | 2 | -4/+8 |
* | * bootstraptest/runner.rb: set default directory to | ko1 | 2007-06-24 | 3 | -3/+24 |
* | * enum.c (enum_minmax): fix SEGV by [].minmax. | akr | 2007-06-23 | 2 | -2/+9 |
* | * enum.c (enum_minmax): new method to get the minimum and maximum | matz | 2007-06-23 | 3 | -5/+149 |
* | update document to follow MatchData#inspect implementation. | akr | 2007-06-23 | 2 | -2/+2 |
* | * re.c (match_inspect): MatchData#inspect implemented. | akr | 2007-06-23 | 2 | -1/+29 |
* | * hash.c (rb_hash_assoc): new method. | matz | 2007-06-22 | 3 | -5/+154 |
* | * string.c (rb_str_upto): add optional argument to specify | matz | 2007-06-22 | 5 | -57/+51 |
* | * proc.c (proc_to_s): revert the change from %p to %lx at YARV | akr | 2007-06-22 | 2 | -1/+6 |
* | * proc.c (proc_to_s): show is_lambda. | akr | 2007-06-22 | 2 | -3/+9 |
* | * hash.c (rb_hash_sort): remove hash specific implementation. | matz | 2007-06-21 | 2 | -42/+27 |
* | * parse.y (rb_intern2): ID_JUNK test based on len, not by NUL. | matz | 2007-06-21 | 2 | -2/+6 |
* | * yarvcore.c (rb_thread_mark): mark also thrown_errinfo. | nobu | 2007-06-21 | 2 | -10/+10 |
* | * parse.y (rb_intern2): name may not be NUL-terminated. | nobu | 2007-06-21 | 3 | -4/+8 |
* | * eval_error.h (error_print): show full stacktrace on | akr | 2007-06-19 | 2 | -1/+7 |
* | * parse.y (rb_intern2): use rb_intern2 to intern without trailing | nobu | 2007-06-19 | 3 | -14/+17 |
* | * test/openssl/test_ec.rb: set properties. | nobu | 2007-06-19 | 0 | -0/+0 |
* | * eval_load.c (load_ext, rb_require_safe): pass VALUE instead of | nobu | 2007-06-19 | 3 | -18/+24 |
* | * ext/openssl/{extconf.rb,ossl_ssl_session.c}: | technorama | 2007-06-18 | 6 | -25/+317 |
* | * eval_load.c (rb_require_safe, ruby_init_ext): load with ruby level | nobu | 2007-06-18 | 4 | -7/+42 |
* | * parse.y (yycompile): disable trace while creating ruby_debug_lines. | nobu | 2007-06-18 | 5 | -98/+107 |
* | * eval.c (ruby_cleanup): return EXIT_FAILURE if any exceptions occured | nobu | 2007-06-18 | 2 | -0/+19 |
* | * vm.c (env_mark): fix to mark block.proc. | ko1 | 2007-06-17 | 2 | -6/+14 |
* | * vm_dump.c (vm_stack_dump_raw): hide VM stack trace. | ko1 | 2007-06-17 | 2 | -0/+6 |
* | * signal.c (sigsegv): clear gc_stress flag on SEGV. | ko1 | 2007-06-17 | 2 | -0/+6 |
* | * variable.c (rb_global_entry, rb_f_untrace_var, rb_alias_variable, | nobu | 2007-06-17 | 2 | -34/+51 |
* | * variable.c (rb_path2class): get rid of dangling pointer caused by | nobu | 2007-06-17 | 3 | -7/+9 |
* | fix typos. | akr | 2007-06-17 | 1 | -13/+13 |