mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-10 18:00:30 -08:00
(Qsignal): Declare here.
(syms_of_process): Intern or staticpro it.
This commit is contained in:
parent
b809d9e75e
commit
324e68ba20
1 changed files with 3 additions and 2 deletions
|
|
@ -149,8 +149,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#include "atimer.h"
|
||||
|
||||
Lisp_Object Qprocessp;
|
||||
Lisp_Object Qrun, Qstop;
|
||||
extern Lisp_Object Qsignal;
|
||||
Lisp_Object Qrun, Qstop, Qsignal;
|
||||
Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
|
||||
Lisp_Object Qlocal, Qipv4, Qdatagram;
|
||||
#ifdef AF_INET6
|
||||
|
|
@ -7005,6 +7004,8 @@ syms_of_process ()
|
|||
staticpro (&Qrun);
|
||||
Qstop = intern ("stop");
|
||||
staticpro (&Qstop);
|
||||
Qsignal = intern ("signal");
|
||||
staticpro (&Qsignal);
|
||||
|
||||
/* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
|
||||
here again.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue