summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y6
1 files changed, 3 insertions, 3 deletions
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;