diff options
author | Jason Rumney <jasonr@gnu.org> | 2002-03-20 20:37:41 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2002-03-20 20:37:41 +0000 |
commit | 3635ecad99b30100ec673c93d6a496df68ad4f9d (patch) | |
tree | 23dfb59ec30a4b10816050201fe7206566a5ec79 /src/process.c | |
parent | ef2cd5961ab8027ac88c50168ccc0c91cc8f79fb (diff) | |
download | emacs-3635ecad99b30100ec673c93d6a496df68ad4f9d.tar.gz |
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
Diffstat (limited to 'src/process.c')
-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; Lisp_Object Qrun, Qstop, Qsignal; Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; Lisp_Object Qlocal; -Lisp_Object QCname, QCbuffer, QChost, QCservice, QCfamily; +Lisp_Object QCname, QCbuffer, QChost, QCservice; Lisp_Object QClocal, QCremote, QCcoding; Lisp_Object QCserver, QCdatagram, QCnowait, QCnoquery, QCstop; -Lisp_Object QCfilter, QCsentinel, QClog, QCoptions, QCfeature; +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,8 +6178,6 @@ syms_of_process () staticpro (&QChost); QCservice = intern (":service"); staticpro (&QCservice); - QCfamily = intern (":family"); - staticpro (&QCfamily); QClocal = intern (":local"); staticpro (&QClocal); QCremote = intern (":remote"); @@ -6188,8 +6190,6 @@ syms_of_process () staticpro (&QCdatagram); QCnowait = intern (":nowait"); staticpro (&QCnowait); - QCfilter = intern (":filter"); - staticpro (&QCfilter); QCsentinel = intern (":sentinel"); staticpro (&QCsentinel); QClog = intern (":log"); |