aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorJoakim Verona2011-06-23 01:28:30 +0200
committerJoakim Verona2011-06-23 01:28:30 +0200
commitc5082a753011dacef505e91f1fc30a84fa75a2eb (patch)
tree2c995eff276b6e9e68f54b4ebe76bf012231c86d /src/process.c
parent787c27e81f046cfa1c457ed405551f8ca0ddb0e8 (diff)
parent297dde5a97c0c5c8020db72213c7f84067f1ee21 (diff)
downloademacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.tar.gz
emacs-c5082a753011dacef505e91f1fc30a84fa75a2eb.zip
merge upstream
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index 5a26bf43146..0040d14a0f6 100644
--- a/src/process.c
+++ b/src/process.c
@@ -892,7 +892,8 @@ not the name of the pty that Emacs uses to talk with that terminal. */)
892 892
893DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer, 893DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
894 2, 2, 0, 894 2, 2, 0,
895 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil). */) 895 doc: /* Set buffer associated with PROCESS to BUFFER (a buffer, or nil).
896Return BUFFER. */)
896 (register Lisp_Object process, Lisp_Object buffer) 897 (register Lisp_Object process, Lisp_Object buffer)
897{ 898{
898 struct Lisp_Process *p; 899 struct Lisp_Process *p;
@@ -1186,7 +1187,7 @@ Returns nil if format of ADDRESS is invalid. */)
1186 if (VECTORP (address)) /* AF_INET or AF_INET6 */ 1187 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1187 { 1188 {
1188 register struct Lisp_Vector *p = XVECTOR (address); 1189 register struct Lisp_Vector *p = XVECTOR (address);
1189 EMACS_UINT size = p->header.size; 1190 EMACS_INT size = p->header.size;
1190 Lisp_Object args[10]; 1191 Lisp_Object args[10];
1191 int nargs, i; 1192 int nargs, i;
1192 1193