From 141d0c380f87dc738c472d691af3879d49ecb636 Mon Sep 17 00:00:00 2001 From: aamine Date: Mon, 15 Jul 2002 01:33:36 +0000 Subject: [PATCH] * parse.y (heredoc_identifier): modify typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ parse.y | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7fa239afa2..d222a907c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jul 15 10:35:35 2002 Minero Aoki + + * parse.y (heredoc_identifier): modify typo. + Sat Jul 13 09:30:04 2002 Nobuyoshi Nakada * parse.y (literal_concat_string): wrong optimization. diff --git a/parse.y b/parse.y index d0dac69d92..c0b9bbe161 100644 --- a/parse.y +++ b/parse.y @@ -2957,12 +2957,12 @@ heredoc_identifier() } switch (c) { case '\'': - func |= str_squote; goto qutoed; + func |= str_squote; goto quoted; case '"': - func |= str_dquote; goto qutoed; + func |= str_dquote; goto quoted; case '`': func |= str_xquote; - qutoed: + quoted: newtok(); tokadd(func); term = c;