From faaf40e55e002212c0c28f7845dfa2322eb7ad05 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 21 Oct 2021 11:43:13 -0700 Subject: feat(rc): string concatenation works --- sys/cmd/rc/code.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'sys/cmd/rc/code.c') diff --git a/sys/cmd/rc/code.c b/sys/cmd/rc/code.c index c5b1987..70fe818 100644 --- a/sys/cmd/rc/code.c +++ b/sys/cmd/rc/code.c @@ -77,7 +77,6 @@ walk(Tree *node) walk(node->child[1]); break; -#if 0 case '^': emitf(Xmark); walk(node->child[1]); @@ -85,7 +84,6 @@ walk(Tree *node) walk(node->child[0]); emitf(Xconcatenate); break; -#endif case Targs: walk(node->child[1]); -- cgit v1.2.1