summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-11 17:39:38 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-11 17:39:38 +0000
commit096960eccbe2bdd61ec57708222945b64423277a (patch)
treef0f9b4718debd60e3592bebe765792329082c31d
parent4f35e24a5a9d9b753f8722599519a14ea9cfc74d (diff)
downloadruby-096960eccbe2bdd61ec57708222945b64423277a.tar.gz
ruby-096960eccbe2bdd61ec57708222945b64423277a.tar.xz
ruby-096960eccbe2bdd61ec57708222945b64423277a.zip
* parse.y (stmt): fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2556 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--parse.y2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e2496421a..2ee0abb7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 12 02:38:00 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
+
+ * parse.y (stmt): fix typo.
+
Tue Jun 11 19:20:34 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in (LIBRUBY): rename to lib$(LIBRUBY_SO).a on Cygwin/MinGW.
diff --git a/parse.y b/parse.y
index b79ef6cad..fae59ab91 100644
--- a/parse.y
+++ b/parse.y
@@ -473,7 +473,7 @@ stmt : kALIAS fitem {lex_state = EXPR_FNAME;} fitem
{
NODE *args;
- value_expr($5);
+ value_expr($6);
args = NEW_LIST($6);
$3 = list_append($3, NEW_NIL());
list_concat(args, $3);