Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3635ecad
Commit
3635ecad
authored
Mar 20, 2002
by
Jason Rumney
Browse files
(QCfamily, QCfiler): Remove duplicate declaration and initialization.
parent
ef2cd596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/process.c
src/process.c
+6
-6
No files found.
src/process.c
View file @
3635ecad
...
...
@@ -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"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment