emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/process.c


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/src/process.c
Date: Wed, 20 Mar 2002 15:37:41 -0500

Index: emacs/src/process.c
diff -c emacs/src/process.c:1.360 emacs/src/process.c:1.361
*** emacs/src/process.c:1.360   Wed Mar 20 13:10:01 2002
--- emacs/src/process.c Wed Mar 20 15:37:41 2002
***************
*** 126,136 ****
  Lisp_Object Qrun, Qstop, Qsignal;
  Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
  Lisp_Object Qlocal;
! Lisp_Object QCname, QCbuffer, QChost, QCservice, QCfamily;
  Lisp_Object QClocal, QCremote, QCcoding;
  Lisp_Object QCserver, QCdatagram, QCnowait, QCnoquery, QCstop;
! Lisp_Object QCfilter, QCsentinel, QClog, QCoptions, QCfeature;
  Lisp_Object Qlast_nonmenu_event;
  /* Qexit is declared and initialized in eval.c.  */
  
  /* a process object is a network connection when its childp field is neither
--- 126,140 ----
  Lisp_Object Qrun, Qstop, Qsignal;
  Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
  Lisp_Object Qlocal;
! Lisp_Object QCname, QCbuffer, QChost, QCservice;
  Lisp_Object QClocal, QCremote, QCcoding;
  Lisp_Object QCserver, QCdatagram, QCnowait, QCnoquery, QCstop;
! Lisp_Object QCsentinel, QClog, QCoptions, QCfeature;
  Lisp_Object Qlast_nonmenu_event;
+ /* QCfamily is declared and initialized in xfaces.c,
+    QCfilter in keyboard.c.  */
+ extern Lisp_Object QCfamily, QCfilter;
+ 
  /* Qexit is declared and initialized in eval.c.  */
  
  /* a process object is a network connection when its childp field is neither
***************
*** 6174,6181 ****
    staticpro (&QChost);
    QCservice = intern (":service");
    staticpro (&QCservice);
-   QCfamily = intern (":family");
-   staticpro (&QCfamily);
    QClocal = intern (":local");
    staticpro (&QClocal);
    QCremote = intern (":remote");
--- 6178,6183 ----
***************
*** 6188,6195 ****
    staticpro (&QCdatagram);
    QCnowait = intern (":nowait");
    staticpro (&QCnowait);
-   QCfilter = intern (":filter");
-   staticpro (&QCfilter);
    QCsentinel = intern (":sentinel");
    staticpro (&QCsentinel);
    QClog = intern (":log");
--- 6190,6195 ----



reply via email to

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