From 12e09f9f85ac48ff891adf92f3b2c9a5fea27273 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 4 Dec 2021 14:10:21 -0800 Subject: Chore(REMOVE): finished deprecation of old io functions. The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over. --- src/cmd/rc/syntax.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd/rc/syntax.y') 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 -- cgit v1.2.1