* process.c (handle_child_signal): Also use WCONTINUED.
[bpt/emacs.git] / src / process.c
index 46385fa..45e8afd 100644 (file)
@@ -6159,7 +6159,8 @@ handle_child_signal (int sig)
       struct Lisp_Process *p = XPROCESS (proc);
       int status;
 
-      if (p->alive && child_status_changed (p->pid, &status, WUNTRACED))
+      if (p->alive
+         && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
        {
          /* Change the status of the process that was found.  */
          p->tick = ++process_tick;