summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1991-07-03 00:08:25 +0000
committerJim Blandy <jimb@redhat.com>1991-07-03 00:08:25 +0000
commitabc367df62dfbd793ea6847f3c6e3de49193ee98 (patch)
tree13f88522991ece32e33de6d6ff4fa4c78854e8ca /src
parent36f7ba0a1e3ee4a5ae38e1bea50dbee5d953e992 (diff)
downloademacs-abc367df62dfbd793ea6847f3c6e3de49193ee98.tar.gz
*** empty log message ***
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.")
#if 0
int mask;
#endif
- struct gcpro gcpro1;
-
- GCPRO1 (*args);
- gcpro1.nvars = nargs;
-
CHECK_STRING (args[0], 0);
if (nargs <= 1 || NULL (args[1]))
@@ -246,8 +241,6 @@ If you quit, the process is killed with SIGKILL.")
#ifndef subprocesses
wait_without_blocking ();
#endif /* subprocesses */
-
- UNGCPRO;
return Qnil;
}
@@ -285,8 +278,6 @@ If you quit, the process is killed with SIGKILL.")
unbind_to (count, Qnil);
- UNGCPRO;
-
if (synch_process_death)
return build_string (synch_process_death);
return make_number (synch_process_retcode);
@@ -319,10 +310,6 @@ If you quit, the process is killed with SIGKILL.")
register Lisp_Object filename_string, start, end;
char tempfile[20];
int count = specpdl_ptr - specpdl;
- struct gcpro gcpro1;
-
- GCPRO1 (*args);
- gcpro1.nvars = 2;
#ifdef VMS
strcpy (tempfile, "tmp:emacsXXXXXX.");
@@ -343,7 +330,6 @@ If you quit, the process is killed with SIGKILL.")
args[3] = filename_string;
Fcall_process (nargs - 2, args + 2);
- UNGCPRO;
return unbind_to (count, Qnil);
}
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.")
{
register int argnum;
register Lisp_Object tem;
- struct gcpro gcpro1;
-
- GCPRO1 (*args);
- gcpro1.nvars = nargs;
for (argnum = 0; argnum < nargs; argnum++)
{
@@ -225,7 +221,6 @@ is converted into a string by expressing it in decimal.")
}
}
- UNGCPRO;
return Qnil;
}