changeset 74749:526fb5e934a5

(Qsignal): Declare here. (syms_of_process): Intern or staticpro it.
author Kim F. Storm <storm@cua.dk>
date Tue, 19 Dec 2006 15:37:34 +0000
parents 8a37dd687f38
children 8079b89022bf
files src/process.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Tue Dec 19 15:37:20 2006 +0000
+++ b/src/process.c	Tue Dec 19 15:37:34 2006 +0000
@@ -149,8 +149,7 @@
 #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 @@
   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.