aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c
index 9ff7dd198dd..5a26bf43146 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1272,11 +1272,11 @@ the command through a shell and redirect one of them using the shell
1272syntax. 1272syntax.
1273 1273
1274usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1274usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1275 (size_t nargs, register Lisp_Object *args) 1275 (ptrdiff_t nargs, Lisp_Object *args)
1276{ 1276{
1277 Lisp_Object buffer, name, program, proc, current_dir, tem; 1277 Lisp_Object buffer, name, program, proc, current_dir, tem;
1278 register unsigned char **new_argv; 1278 register unsigned char **new_argv;
1279 register size_t i; 1279 ptrdiff_t i;
1280 int count = SPECPDL_INDEX (); 1280 int count = SPECPDL_INDEX ();
1281 1281
1282 buffer = args[1]; 1282 buffer = args[1];
@@ -2436,7 +2436,7 @@ Examples:
2436\(serial-process-configure :port "\\\\.\\COM13" :bytesize 7) 2436\(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2437 2437
2438usage: (serial-process-configure &rest ARGS) */) 2438usage: (serial-process-configure &rest ARGS) */)
2439 (size_t nargs, Lisp_Object *args) 2439 (ptrdiff_t nargs, Lisp_Object *args)
2440{ 2440{
2441 struct Lisp_Process *p; 2441 struct Lisp_Process *p;
2442 Lisp_Object contact = Qnil; 2442 Lisp_Object contact = Qnil;
@@ -2554,7 +2554,7 @@ Examples:
2554\(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) 2554\(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2555 2555
2556usage: (make-serial-process &rest ARGS) */) 2556usage: (make-serial-process &rest ARGS) */)
2557 (size_t nargs, Lisp_Object *args) 2557 (ptrdiff_t nargs, Lisp_Object *args)
2558{ 2558{
2559 int fd = -1; 2559 int fd = -1;
2560 Lisp_Object proc, contact, port; 2560 Lisp_Object proc, contact, port;
@@ -2832,7 +2832,7 @@ The original argument list, modified with the actual connection
2832information, is available via the `process-contact' function. 2832information, is available via the `process-contact' function.
2833 2833
2834usage: (make-network-process &rest ARGS) */) 2834usage: (make-network-process &rest ARGS) */)
2835 (size_t nargs, Lisp_Object *args) 2835 (ptrdiff_t nargs, Lisp_Object *args)
2836{ 2836{
2837 Lisp_Object proc; 2837 Lisp_Object proc;
2838 Lisp_Object contact; 2838 Lisp_Object contact;
@@ -3148,7 +3148,7 @@ usage: (make-network-process &rest ARGS) */)
3148 3148
3149 for (lres = res; lres; lres = lres->ai_next) 3149 for (lres = res; lres; lres = lres->ai_next)
3150 { 3150 {
3151 size_t optn; 3151 ptrdiff_t optn;
3152 int optbits; 3152 int optbits;
3153 3153
3154#ifdef WINDOWSNT 3154#ifdef WINDOWSNT