summaryrefslogtreecommitdiffstats
path: root/eshtrans
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-02-21 12:54:52 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-02-21 12:54:52 (EST)
commitd14f6d59b6765c99203be0213c6d265a102e1eb4 (patch)
tree47a47d2ac648a057d5e9fb1e4a20ea0e066099f2 /eshtrans
parent025ec1a5caee267ccf655bb9ddc3320936f69d57 (diff)
downloadeggshell-d14f6d59b6765c99203be0213c6d265a102e1eb4.zip
eggshell-d14f6d59b6765c99203be0213c6d265a102e1eb4.tar.gz
eggshell-d14f6d59b6765c99203be0213c6d265a102e1eb4.tar.bz2
eshtrans/frontend: Fix missing ";;"
eshtrans caught an actual syntax error in itself (!), although oddly other shells didn't consider this an error.
Diffstat (limited to 'eshtrans')
-rw-r--r--eshtrans/frontend/lexer.esh1
1 files changed, 1 insertions, 0 deletions
diff --git a/eshtrans/frontend/lexer.esh b/eshtrans/frontend/lexer.esh
index d274076..552be45 100644
--- a/eshtrans/frontend/lexer.esh
+++ b/eshtrans/frontend/lexer.esh
@@ -447,6 +447,7 @@ scan_word()
'here-document' \
'delimiters'
fi
+ ;;
esac
case "${prev_c}" in
'') lgetc;;