about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2017-09-20 10:17:59 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2017-09-20 10:17:59 -0700
commitd1914c5af484791ee5d8f20261c08cecf113d3a9 (patch)
treeadc839d6129c576079d2f5bf9207bdeb8f2ff095 /Src/exec.c
parent2c41dc0b2ed463faffa5508885f65ac396564dc7 (diff)
downloadzsh-d1914c5af484791ee5d8f20261c08cecf113d3a9.tar.gz
zsh-d1914c5af484791ee5d8f20261c08cecf113d3a9.tar.xz
zsh-d1914c5af484791ee5d8f20261c08cecf113d3a9.zip
41736: NO_INTERACTIVE_COMMENTS in $(...)
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c
index d1367660c..31edfab55 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -4509,7 +4509,12 @@ getoutput(char *cmd, int qt)
     pid_t pid;
     char *s;
 
-    if (!(prog = parse_string(cmd, 0)))
+    int onc = nocomments;
+    nocomments = (interact && unset(INTERACTIVECOMMENTS));
+    prog = parse_string(cmd, 0);
+    nocomments = onc;
+
+    if (!prog)
 	return NULL;
 
     if ((s = simple_redir_name(prog, REDIR_READ))) {