aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
Commit message (Expand)AuthorAgeFilesLines
* * eval.c (rb_eval): NODE_EVSTR is no longer used.nobu2002-06-241-17/+1
* * eval.c (svalue_to_avalue): v may be Qundef. This fix wasmatz2002-06-131-0/+1
* * eval.c (rb_eval): ruby_frame->last_func may be null, if it'smatz2002-06-111-3/+8
* * string.c (rb_str_aset): should raise error if an indexing stringmatz2002-06-041-13/+2
* * range.c (range_step): iteration done using "+" if elements arematz2002-05-301-1/+1
* * parse.y: yyparse #defines moved from intern.hmatz2002-05-291-1/+25
* * array.c: fixed format string for 'long' args (%d -> %ld).michal2002-05-281-4/+4
* * eval.c (scope_node): trick to keep the node has a scope.nobu2002-05-281-0/+12
* * object.c (Init_Object): should do exact match for Module#==.matz2002-05-211-1/+6
* * eval.c (rb_thread_select): cleanup conditional compilation.nobu2002-05-161-18/+5
* * eval.c (rb_clear_cache_by_class): new function.matz2002-05-141-13/+49
* * eval.c (rb_thread_join): added an argument to limit time to waitnobu2002-05-091-6/+28
* * eval.c (rb_yield_0): The destination of the goto jump was wrong.aamine2002-05-071-1/+1
* * eval.c (superclass): undesirable "unexpected return" when the superclass is...aamine2002-05-071-2/+4
* * numeric.c (num_step): better iteration condition for floatmatz2002-05-011-16/+16
* * eval.c (rb_proc_new): make Proc from C function. [new]nobu2002-04-261-0/+8
* * various files: macro fix-up by Michal Rokos.matz2002-04-251-1/+1
* * eval.c (proc_to_proc): return self. [new]nobu2002-04-241-5/+15
* * io.c (rb_io_mode_flags): both 'r+b' and 'rb+' should be allowed.matz2002-04-241-30/+32
* * eval.c (rb_thread_cleanup): current thread may be THREAD_STOPPED,matz2002-04-191-1/+1
* * re.c (rb_reg_expr_str): should treat backslash specially inmatz2002-04-181-21/+23
* * eval.c (assign): convert mrhs to mvalue.nobu2002-04-161-1/+1
* * pack.c (pack_unpack): should treat 'U' in character unit, not inmatz2002-04-151-2/+1
* * eval.c (assign): ruby_verbose should be surrounded by RTEST().matz2002-04-111-1/+1
* * eval.c (error_handle): default to 1 unless status is set.nobu2002-04-081-3/+3
* * parse.y (primary): while/until statement modifiers to "begin"matz2002-03-261-21/+23
* * ext/socket/socket.c (bsock_do_not_rev_lookup_set): should not bematz2002-03-251-4/+6
* * the VMS support patch submitted by Akiyoshi, Masamichimatz2002-03-221-35/+15
* * eval.c (is_defined): should check receiver only once.matz2002-03-201-1/+5
* * re.c (rb_reg_search): should clear last_match if pos is out ofmatz2002-03-191-2/+2
* * eval.c (rb_f_abort): should not bypass cleanup.nobu2002-03-181-1/+1
* * re.c (rb_reg_match): should clear $~ if operand is nil.matz2002-03-141-3/+14
* * marshal.c (w_object): module inclusion using extend() shouldmatz2002-03-111-1/+2
* * eval.c (cvar_cbase): utility function to find innermost nonmatz2002-03-081-51/+31
* * gc.c (rb_source_filename): added. holds unique strings for filenobu2002-03-071-1/+1
* * eval.c (rb_mod_include): load modules in argument order.matz2002-02-281-5/+5
* * ext/dbm/dbm.c (fdbm_select): 1.7 behavior.matz2002-02-271-23/+24
* * eval.c (rb_eval): call trace_func for if/while conditions.matz2002-02-261-0/+6
* * eval.c (method_inspect): should not dump core for unboundmatz2002-02-251-13/+18
* * pack.c (pack_pack): wrong # comment treatment.matz2002-02-211-1/+1
* * hash.c (rb_any_cmp): should handle Qundef in keys.matz2002-02-201-8/+19
* * eval.c (rb_eval_string_wrap): should hide the toplevel localmatz2002-02-191-0/+2
* * parse.y (expr_value, arg_value, primary_value): value_expr()matz2002-02-181-5/+10
* * eval.c (rb_eval): replace rb_cvar_declare() by rb_cvar_set().matz2002-02-151-4/+4
* * parse.y (stmt): local variable declaration order was changedmatz2002-02-131-42/+33
* * eval.c (rb_eval): singleton chech should be moved from yycompilematz2002-02-091-17/+23
* * parse.y (yycompile): should inherit "in_single" if eval happenedmatz2002-02-081-1/+0
* * io.c (rb_io_readlines): avoid calling GetOpenFile() repeatedly.matz2002-02-061-3/+5
* * io.c (fptr_finalize): should raise error when fclose fails.matz2002-02-051-8/+28
* * object.c (rb_class_real): should not follow ICLASS linkmatz2002-02-041-2/+3