summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--parse.y2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e2496421ab..2ee0abb7bd 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 b79ef6cad7..fae59ab91d 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);