diff options
| author | Jason Rumney | 2002-03-20 20:37:41 +0000 |
|---|---|---|
| committer | Jason Rumney | 2002-03-20 20:37:41 +0000 |
| commit | 3635ecad99b30100ec673c93d6a496df68ad4f9d (patch) | |
| tree | 23dfb59ec30a4b10816050201fe7206566a5ec79 /src | |
| parent | ef2cd5961ab8027ac88c50168ccc0c91cc8f79fb (diff) | |
| download | emacs-3635ecad99b30100ec673c93d6a496df68ad4f9d.tar.gz emacs-3635ecad99b30100ec673c93d6a496df68ad4f9d.zip | |
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index 4483dfa330f..00bc4b2f0a3 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -126,11 +126,15 @@ Lisp_Object Qprocessp; | |||
| 126 | Lisp_Object Qrun, Qstop, Qsignal; | 126 | Lisp_Object Qrun, Qstop, Qsignal; |
| 127 | Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; | 127 | Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; |
| 128 | Lisp_Object Qlocal; | 128 | Lisp_Object Qlocal; |
| 129 | Lisp_Object QCname, QCbuffer, QChost, QCservice, QCfamily; | 129 | Lisp_Object QCname, QCbuffer, QChost, QCservice; |
| 130 | Lisp_Object QClocal, QCremote, QCcoding; | 130 | Lisp_Object QClocal, QCremote, QCcoding; |
| 131 | Lisp_Object QCserver, QCdatagram, QCnowait, QCnoquery, QCstop; | 131 | Lisp_Object QCserver, QCdatagram, QCnowait, QCnoquery, QCstop; |
| 132 | Lisp_Object QCfilter, QCsentinel, QClog, QCoptions, QCfeature; | 132 | Lisp_Object QCsentinel, QClog, QCoptions, QCfeature; |
| 133 | Lisp_Object Qlast_nonmenu_event; | 133 | Lisp_Object Qlast_nonmenu_event; |
| 134 | /* QCfamily is declared and initialized in xfaces.c, | ||
| 135 | QCfilter in keyboard.c. */ | ||
| 136 | extern Lisp_Object QCfamily, QCfilter; | ||
| 137 | |||
| 134 | /* Qexit is declared and initialized in eval.c. */ | 138 | /* Qexit is declared and initialized in eval.c. */ |
| 135 | 139 | ||
| 136 | /* a process object is a network connection when its childp field is neither | 140 | /* a process object is a network connection when its childp field is neither |
| @@ -6174,8 +6178,6 @@ syms_of_process () | |||
| 6174 | staticpro (&QChost); | 6178 | staticpro (&QChost); |
| 6175 | QCservice = intern (":service"); | 6179 | QCservice = intern (":service"); |
| 6176 | staticpro (&QCservice); | 6180 | staticpro (&QCservice); |
| 6177 | QCfamily = intern (":family"); | ||
| 6178 | staticpro (&QCfamily); | ||
| 6179 | QClocal = intern (":local"); | 6181 | QClocal = intern (":local"); |
| 6180 | staticpro (&QClocal); | 6182 | staticpro (&QClocal); |
| 6181 | QCremote = intern (":remote"); | 6183 | QCremote = intern (":remote"); |
| @@ -6188,8 +6190,6 @@ syms_of_process () | |||
| 6188 | staticpro (&QCdatagram); | 6190 | staticpro (&QCdatagram); |
| 6189 | QCnowait = intern (":nowait"); | 6191 | QCnowait = intern (":nowait"); |
| 6190 | staticpro (&QCnowait); | 6192 | staticpro (&QCnowait); |
| 6191 | QCfilter = intern (":filter"); | ||
| 6192 | staticpro (&QCfilter); | ||
| 6193 | QCsentinel = intern (":sentinel"); | 6193 | QCsentinel = intern (":sentinel"); |
| 6194 | staticpro (&QCsentinel); | 6194 | staticpro (&QCsentinel); |
| 6195 | QClog = intern (":log"); | 6195 | QClog = intern (":log"); |