about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorDaniel Shahaf <danielsh@apache.org>2020-01-26 01:17:00 +0000
committerDaniel Shahaf <danielsh@apache.org>2020-01-29 09:02:49 +0000
commit581585dfc66e2bb18434cdd1ad2f5899b12a86dd (patch)
tree8084b9d252ecd3a0cbfaf7da58c770a2158a8687 /Src/exec.c
parent8dab5bc03726168356f76c708919ed011adbaf95 (diff)
downloadzsh-581585dfc66e2bb18434cdd1ad2f5899b12a86dd.tar.gz
zsh-581585dfc66e2bb18434cdd1ad2f5899b12a86dd.tar.xz
zsh-581585dfc66e2bb18434cdd1ad2f5899b12a86dd.zip
45343: Queue signals around arithmetic evaluations
The queueing added in execarith() in 45083 is reverted since the callee
does this now.
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Src/exec.c b/Src/exec.c
index fac095d64..50027654a 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -5101,7 +5101,6 @@ execarith(Estate state, UNUSED(int do_exec))
     mnumber val = zero_mnumber;
     int htok = 0;
 
-    queue_signals();
     if (isset(XTRACE)) {
 	printprompt4();
 	fprintf(xtrerr, "((");
@@ -5121,8 +5120,6 @@ execarith(Estate state, UNUSED(int do_exec))
 	fprintf(xtrerr, " ))\n");
 	fflush(xtrerr);
     }
-    unqueue_signals();
-
     if (errflag) {
 	errflag &= ~ERRFLAG_ERROR;
 	return 2;