about summary refs log tree commit diff
path: root/Src/context.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/context.c')
-rw-r--r--Src/context.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/context.c b/Src/context.c
index 1b8741f46..2dc8d3b89 100644
--- a/Src/context.c
+++ b/Src/context.c
@@ -53,6 +53,8 @@ zcontext_save_partial(int parts)
 {
     struct context_stack *cs;
 
+    queue_signals();
+
     cs = (struct context_stack *)malloc(sizeof(struct context_stack));
 
     if (parts & ZCONTEXT_HIST) {
@@ -67,6 +69,8 @@ zcontext_save_partial(int parts)
 
     cs->next = cstack;
     cstack = cs;
+
+    unqueue_signals();
 }
 
 /* save context in full */