summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 09:49:28 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 09:49:28 +0000
commit68a2b3cf7f4ba888501b760c26b6855bb9ad0092 (patch)
tree75b6d78f4885dcf985e7927b2b9ba24bc8ac6a8c /parse.y
parent6bfaf6e20957d57f88500b78e3ae67719cc99941 (diff)
merges r23474 from trunk into ruby_1_9_1.
-- * compile.c (rb_parse_in_eval): returns true in true eval, not in main. [ruby-dev:38382] * parse.y (program): inherits dvars in eval or main. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y7
1 files changed, 4 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index 7be492a69c..6596bf8afc 100644
--- a/parse.y
+++ b/parse.y
@@ -765,14 +765,15 @@ static void token_info_pop(struct parser_params*, const char *token);
program : {
lex_state = EXPR_BEG;
/*%%%*/
- local_push(compile_for_eval);
+ $<num>$ = compile_for_eval || rb_parse_in_main();
+ local_push($<num>$);
/*%
%*/
}
top_compstmt
{
/*%%%*/
- if ($2 && !compile_for_eval) {
+ if ($2 && !$<num>1) {
/* last expression should not be void */
if (nd_type($2) != NODE_BLOCK) void_expr($2);
else {
@@ -5024,7 +5025,7 @@ yycompile0(VALUE arg, int tracing)
NODE *tree;
struct parser_params *parser = (struct parser_params *)arg;
- if ((!compile_for_eval || rb_parse_in_main()) && rb_safe_level() == 0) {
+ if (!compile_for_eval && rb_safe_level() == 0) {
ruby_debug_lines = debug_lines(ruby_sourcefile);
if (ruby_debug_lines && ruby_sourceline > 0) {
VALUE str = STR_NEW0();