summaryrefslogtreecommitdiffstats
path: root/parsing/parse.sh
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/parse.sh')
-rw-r--r--parsing/parse.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/parsing/parse.sh b/parsing/parse.sh
index da0b07f..444ccc5 100644
--- a/parsing/parse.sh
+++ b/parsing/parse.sh
@@ -38,6 +38,7 @@ list()
fi
return 1
}
+
and_or()
{
dbg 'and_or()'
@@ -51,6 +52,7 @@ and_or()
fi
return 1
}
+
pipeline()
{
dbg 'pipeline()'
@@ -78,13 +80,13 @@ pipe_sequence()
command()
{
dbg 'command()'
- if compound_command; then
+ if simple_command; then
+ return 0
+ elif compound_command; then
redirect_list
return 0
elif function_defn; then
return 0
- elif simple_command; then
- return 0
fi
return 1
}
@@ -441,7 +443,7 @@ try()
#try 'foo ${#bar#}'
#try 'foo ${^}'
#try 'foo `bar`'
-try 'foo &&'
+#try 'foo &&'
#try '{ foo; }'
#try '( foo )'
#try 'for i in 1 2 3; do stuff; done'