* parse.y (newline_node): always remove NODE_BEGIN.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-11-30 18:34:34 +00:00
Родитель 0edabec626
Коммит 4afa82056c
3 изменённых файлов: 11 добавлений и 6 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Dec 1 03:34:32 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (newline_node): always remove NODE_BEGIN.
Fri Nov 30 23:48:07 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* signal.c (ruby_signal): use SA_SIGINFO if available.

Просмотреть файл

@ -817,7 +817,7 @@ stmts : none
| stmt
{
/*%%%*/
$$ = newline_node(remove_begin($1));
$$ = newline_node($1);
/*%
$$ = dispatch2(stmts_add, dispatch0(stmts_new), $1);
%*/
@ -825,7 +825,7 @@ stmts : none
| stmts terms stmt
{
/*%%%*/
$$ = block_append($1, newline_node(remove_begin($3)));
$$ = block_append($1, newline_node($3));
/*%
$$ = dispatch2(stmts_add, $1, $3);
%*/
@ -7281,6 +7281,7 @@ static NODE*
newline_node(NODE *node)
{
if (node) {
node = remove_begin(node);
node->flags |= NODE_NEWLINE;
}
return node;

Просмотреть файл

@ -1,15 +1,15 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2007-11-30"
#define RUBY_RELEASE_DATE "2007-12-01"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20071130
#define RUBY_RELEASE_CODE 20071201
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 11
#define RUBY_RELEASE_DAY 30
#define RUBY_RELEASE_MONTH 12
#define RUBY_RELEASE_DAY 1
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];