From 757168e2c8af374436108266cc3cfd32a946a590 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Tue, 16 Jan 2001 13:44:18 +0000 Subject: remove 13108 (trap queues); replace with signal queueing to ensure that user signal handlers are only executed when it is safe to run them (13365) --- Src/math.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Src/math.c') diff --git a/Src/math.c b/Src/math.c index 282622f73..bad958243 100644 --- a/Src/math.c +++ b/Src/math.c @@ -495,10 +495,12 @@ getcvar(char *s) mnumber mn; mn.type = MN_INTEGER; + queue_signals(); if (!(t = getsparam(s))) mn.u.l = 0; else mn.u.l = STOUC(*t == Meta ? t[1] ^ 32 : *t); + unqueue_signals(); return mn; } -- cgit 1.4.1