bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#15110: build error: WCONTINUED undeclared


From: Glenn Morris
Subject: bug#15110: build error: WCONTINUED undeclared
Date: Tue, 29 Apr 2014 11:16:27 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Version: 24.4

I applied the following:

*** src/process.c       2014-04-16 13:27:28 +0000
--- src/process.c       2014-04-29 15:12:36 +0000
***************
*** 6225,6231 ****
        int status;
  
        if (p->alive
!         && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
        {
          /* Change the status of the process that was found.  */
          p->tick = ++process_tick;
--- 6225,6235 ----
        int status;
  
        if (p->alive
! #ifndef WCONTINUED
!           && child_status_changed (p->pid, &status, WUNTRACED))
! #else
!           && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
! #endif
        {
          /* Change the status of the process that was found.  */
          p->tick = ++process_tick;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]