aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/rc/syntax.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/rc/syntax.y')
-rw-r--r--src/cmd/rc/syntax.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/rc/syntax.y b/src/cmd/rc/syntax.y
index 3777710..dfd6e87 100644
--- a/src/cmd/rc/syntax.y
+++ b/src/cmd/rc/syntax.y
@@ -1,5 +1,5 @@
%token Tfor Tin Twhile Tif Telse Tswitch Tcase Tcasebody Ttwiddle Tbang Tsubshell Tfunc
-%token Tredir Tdup Tpipe Tindex
+%token Tredir Tdup Tpipe Tpipefd Tindex
%token Tbasic Targs Tword Twords Tparen Tblock
%define parse.error verbose
@@ -126,7 +126,7 @@ nonkeyword:
| Tcount atom { $$ = maketree1(Tcount, $2); }
| Tjoin atom { $$ = maketree1(Tjoin, $2); }
| '`' block { $$ = maketree1('`', $2); }
-//| Tredir block { $$ = hangchild1($1, $2, 0); $$->type = Tpipefd; }
+| Tredir block { $$ = hangchild1($1, $2, 0); $$->type = Tpipefd; }
keyword:
Tfor|Tin|Twhile|Tif|Telse|Tswitch|Tcase|Tbang|Tsubshell|Ttwiddle|Tfunc