aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 7d8185c5a4b..fb25a647188 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -121,11 +121,6 @@ If you quit, the process is killed with SIGKILL.")
121#if 0 121#if 0
122 int mask; 122 int mask;
123#endif 123#endif
124 struct gcpro gcpro1;
125
126 GCPRO1 (*args);
127 gcpro1.nvars = nargs;
128
129 CHECK_STRING (args[0], 0); 124 CHECK_STRING (args[0], 0);
130 125
131 if (nargs <= 1 || NULL (args[1])) 126 if (nargs <= 1 || NULL (args[1]))
@@ -246,8 +241,6 @@ If you quit, the process is killed with SIGKILL.")
246#ifndef subprocesses 241#ifndef subprocesses
247 wait_without_blocking (); 242 wait_without_blocking ();
248#endif /* subprocesses */ 243#endif /* subprocesses */
249
250 UNGCPRO;
251 return Qnil; 244 return Qnil;
252 } 245 }
253 246
@@ -285,8 +278,6 @@ If you quit, the process is killed with SIGKILL.")
285 278
286 unbind_to (count, Qnil); 279 unbind_to (count, Qnil);
287 280
288 UNGCPRO;
289
290 if (synch_process_death) 281 if (synch_process_death)
291 return build_string (synch_process_death); 282 return build_string (synch_process_death);
292 return make_number (synch_process_retcode); 283 return make_number (synch_process_retcode);
@@ -319,10 +310,6 @@ If you quit, the process is killed with SIGKILL.")
319 register Lisp_Object filename_string, start, end; 310 register Lisp_Object filename_string, start, end;
320 char tempfile[20]; 311 char tempfile[20];
321 int count = specpdl_ptr - specpdl; 312 int count = specpdl_ptr - specpdl;
322 struct gcpro gcpro1;
323
324 GCPRO1 (*args);
325 gcpro1.nvars = 2;
326 313
327#ifdef VMS 314#ifdef VMS
328 strcpy (tempfile, "tmp:emacsXXXXXX."); 315 strcpy (tempfile, "tmp:emacsXXXXXX.");
@@ -343,7 +330,6 @@ If you quit, the process is killed with SIGKILL.")
343 args[3] = filename_string; 330 args[3] = filename_string;
344 Fcall_process (nargs - 2, args + 2); 331 Fcall_process (nargs - 2, args + 2);
345 332
346 UNGCPRO;
347 return unbind_to (count, Qnil); 333 return unbind_to (count, Qnil);
348} 334}
349 335