aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c14
-rw-r--r--src/mocklisp.c5
2 files changed, 0 insertions, 19 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
diff --git a/src/mocklisp.c b/src/mocklisp.c
index 86243fc987d..5f0800f94c1 100644
--- a/src/mocklisp.c
+++ b/src/mocklisp.c
@@ -205,10 +205,6 @@ is converted into a string by expressing it in decimal.")
205{ 205{
206 register int argnum; 206 register int argnum;
207 register Lisp_Object tem; 207 register Lisp_Object tem;
208 struct gcpro gcpro1;
209
210 GCPRO1 (*args);
211 gcpro1.nvars = nargs;
212 208
213 for (argnum = 0; argnum < nargs; argnum++) 209 for (argnum = 0; argnum < nargs; argnum++)
214 { 210 {
@@ -225,7 +221,6 @@ is converted into a string by expressing it in decimal.")
225 } 221 }
226 } 222 }
227 223
228 UNGCPRO;
229 return Qnil; 224 return Qnil;
230} 225}
231 226