about summary refs log tree commit diff
path: root/Src/parse.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-24 10:20:23 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-24 10:20:23 +0000
commit01ffe47e012deb204dc74a3fff794f8b4a3ec795 (patch)
tree3f025099e1e9e8259b7fbe6683976a2f655e229a /Src/parse.c
parent3aeeda594e1f2f572f0865ee01829875d6db369e (diff)
downloadzsh-01ffe47e012deb204dc74a3fff794f8b4a3ec795.tar.gz
zsh-01ffe47e012deb204dc74a3fff794f8b4a3ec795.tar.xz
zsh-01ffe47e012deb204dc74a3fff794f8b4a3ec795.zip
zsh-workers/9863
Diffstat (limited to 'Src/parse.c')
-rw-r--r--Src/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/parse.c b/Src/parse.c
index 85e70935f..fde25f106 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -1154,13 +1154,13 @@ par_if(int *complex)
 	    yylex();
 	if (tok == INBRACE && usebrace) {
 	    yylex();
-	    par_list(complex);
+	    par_save_list(complex);
 	    if (tok != OUTBRACE) {
 		cmdpop();
 		YYERRORV(oecused);
 	    }
 	} else {
-	    par_list(complex);
+	    par_save_list(complex);
 	    if (tok != FI) {
 		cmdpop();
 		YYERRORV(oecused);
@@ -1507,7 +1507,7 @@ par_simple(int *complex, int nr)
 		int c = 0;
 
 		yylex();
-		par_list(&c);
+		par_save_list(&c);
 		if (tok != OUTBRACE) {
 		    cmdpop();
 		    lineno += oldlineno;