Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
abc367df
Commit
abc367df
authored
Jul 03, 1991
by
Jim Blandy
Browse files
*** empty log message ***
parent
36f7ba0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
src/callproc.c
src/callproc.c
+0
-14
src/mocklisp.c
src/mocklisp.c
+0
-5
No files found.
src/callproc.c
View file @
abc367df
...
...
@@ -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
);
}
...
...
src/mocklisp.c
View file @
abc367df
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment