aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMiles Bader2007-01-01 03:21:06 +0000
committerMiles Bader2007-01-01 03:21:06 +0000
commit4c34eeeee5886d14f3e60b77fb563cb549c8896f (patch)
treeaf17010f0864173dd6416585f08d686377791412 /src/process.c
parent76acf92ebe73e35528c5966a21328305ba7b5aef (diff)
parentdb6292445840e2795f35ebad62a14314fc3c7c21 (diff)
downloademacs-4c34eeeee5886d14f3e60b77fb563cb549c8896f.tar.gz
emacs-4c34eeeee5886d14f3e60b77fb563cb549c8896f.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 563-582) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 177-185) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-158
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index 663170e685e..6dc5a88944c 100644
--- a/src/process.c
+++ b/src/process.c
@@ -149,8 +149,7 @@ Boston, MA 02110-1301, USA. */
149#include "atimer.h" 149#include "atimer.h"
150 150
151Lisp_Object Qprocessp; 151Lisp_Object Qprocessp;
152Lisp_Object Qrun, Qstop; 152Lisp_Object Qrun, Qstop, Qsignal;
153extern Lisp_Object Qsignal;
154Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; 153Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
155Lisp_Object Qlocal, Qipv4, Qdatagram; 154Lisp_Object Qlocal, Qipv4, Qdatagram;
156#ifdef AF_INET6 155#ifdef AF_INET6
@@ -2900,7 +2899,7 @@ usage: (make-network-process &rest ARGS) */)
2900 /* Make QCaddress an alias for :local (server) or :remote (client). */ 2899 /* Make QCaddress an alias for :local (server) or :remote (client). */
2901 QCaddress = is_server ? QClocal : QCremote; 2900 QCaddress = is_server ? QClocal : QCremote;
2902 2901
2903 /* :wait BOOL */ 2902 /* :nowait BOOL */
2904 if (!is_server && socktype == SOCK_STREAM 2903 if (!is_server && socktype == SOCK_STREAM
2905 && (tem = Fplist_get (contact, QCnowait), !NILP (tem))) 2904 && (tem = Fplist_get (contact, QCnowait), !NILP (tem)))
2906 { 2905 {
@@ -6986,6 +6985,8 @@ syms_of_process ()
6986 staticpro (&Qrun); 6985 staticpro (&Qrun);
6987 Qstop = intern ("stop"); 6986 Qstop = intern ("stop");
6988 staticpro (&Qstop); 6987 staticpro (&Qstop);
6988 Qsignal = intern ("signal");
6989 staticpro (&Qsignal);
6989 6990
6990 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it 6991 /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it
6991 here again. 6992 here again.