1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* parse.y (struct parser_params): common members in the parser and

ripper must be placed at each same location.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-09-15 14:36:33 +00:00
parent 740e1b66c8
commit 50f5de1491
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sat Sep 15 23:36:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (struct parser_params): common members in the parser and
ripper must be placed at each same location.
Sat Sep 15 18:25:15 2007 Kouhei Sutou <kou@cozmixng.org>
* string.c (rb_str_rstrip_bang): fixed too much rstrip. [ruby-dev:31786]

View file

@ -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)