diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-15 14:36:33 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-15 14:36:33 +0000 |
| commit | 42331241b36827595bda2013da0071e786a521a8 (patch) | |
| tree | c832a7ab6936f369a2d44f43c69b42c7b880648e /parse.y | |
| parent | cb03781df4a60072c9b649a3ad642b25eb5181fb (diff) | |
| download | ruby-42331241b36827595bda2013da0071e786a521a8.tar.gz ruby-42331241b36827595bda2013da0071e786a521a8.tar.xz ruby-42331241b36827595bda2013da0071e786a521a8.zip | |
* parse.y (struct parser_params): common members in the parser and
ripper must be placed at each same location.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -236,6 +236,7 @@ struct parser_params { int line_count; int has_shebang; int parser_ruby_sourceline; /* current line no. */ + rb_encoding *enc; #ifndef RIPPER /* Ruby core only */ @@ -257,8 +258,6 @@ struct parser_params { VALUE parsing_thread; int toplevel_p; #endif - - rb_encoding *enc; }; #define STR_NEW(p,n) rb_enc_str_new((p),(n),parser->enc) |
