mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 22:14:37 +02:00
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f0ba57341a
commit
77e876615d
21 changed files with 89 additions and 101 deletions
8
parse.y
8
parse.y
|
@ -1786,9 +1786,6 @@ none : /* none */
|
|||
#include <sys/types.h>
|
||||
#include "regex.h"
|
||||
#include "util.h"
|
||||
#ifndef strdup
|
||||
char *strdup();
|
||||
#endif
|
||||
|
||||
#define is_identchar(c) (((int)(c))!=-1&&(ISALNUM(c) || (c) == '_' || ismbchar(c)))
|
||||
|
||||
|
@ -1862,6 +1859,7 @@ yycompile(f, line)
|
|||
int line;
|
||||
{
|
||||
int n;
|
||||
NODE *node = 0;
|
||||
|
||||
if (!compile_for_eval && rb_safe_level() == 0 &&
|
||||
rb_const_defined(rb_cObject, rb_intern("SCRIPT_LINES__"))) {
|
||||
|
@ -1898,9 +1896,9 @@ yycompile(f, line)
|
|||
class_nest = 0;
|
||||
in_single = 0;
|
||||
cur_mid = 0;
|
||||
if (n == 0) return ruby_eval_tree;
|
||||
|
||||
return 0;
|
||||
if (n == 0) node = ruby_eval_tree;
|
||||
return node;
|
||||
}
|
||||
|
||||
static int lex_gets_ptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue