Mercurial > emacs
comparison src/process.c @ 16206:4aba36944749
(stream_process): Variable deleted.
(syms_of_process): staticpro deleted.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 16 Sep 1996 05:09:06 +0000 |
| parents | 8d6d35b486c0 |
| children | 02044b05d8e0 |
comparison
equal
deleted
inserted
replaced
| 16205:31a12077e3d7 | 16206:4aba36944749 |
|---|---|
| 111 | 111 |
| 112 /* a process object is a network connection when its childp field is neither | 112 /* a process object is a network connection when its childp field is neither |
| 113 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */ | 113 Qt nor Qnil but is instead a cons cell (HOSTNAME PORTNUM). */ |
| 114 | 114 |
| 115 #ifdef HAVE_SOCKETS | 115 #ifdef HAVE_SOCKETS |
| 116 static Lisp_Object stream_process; | |
| 117 | |
| 118 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp)) | 116 #define NETCONN_P(p) (GC_CONSP (XPROCESS (p)->childp)) |
| 119 #else | 117 #else |
| 120 #define NETCONN_P(p) 0 | 118 #define NETCONN_P(p) 0 |
| 121 #endif /* HAVE_SOCKETS */ | 119 #endif /* HAVE_SOCKETS */ |
| 122 | 120 |
| 3745 } | 3743 } |
| 3746 } | 3744 } |
| 3747 | 3745 |
| 3748 syms_of_process () | 3746 syms_of_process () |
| 3749 { | 3747 { |
| 3750 #ifdef HAVE_SOCKETS | |
| 3751 stream_process = intern ("stream"); | |
| 3752 #endif | |
| 3753 Qprocessp = intern ("processp"); | 3748 Qprocessp = intern ("processp"); |
| 3754 staticpro (&Qprocessp); | 3749 staticpro (&Qprocessp); |
| 3755 Qrun = intern ("run"); | 3750 Qrun = intern ("run"); |
| 3756 staticpro (&Qrun); | 3751 staticpro (&Qrun); |
| 3757 Qstop = intern ("stop"); | 3752 Qstop = intern ("stop"); |
