mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; * src/callproc.c (call_process): Fix a typo.
This commit is contained in:
parent
b1621769ee
commit
cc62eb196d
1 changed files with 2 additions and 2 deletions
|
|
@ -560,10 +560,10 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
|
|||
else
|
||||
new_argv[1] = 0;
|
||||
#ifdef HAVE_MPS
|
||||
new_argv[0] = SSDATA (path);
|
||||
#else
|
||||
new_argv[0] = xstrdup (SSDATA (path));
|
||||
record_unwind_protect_ptr (xfree, new_argv[0]);
|
||||
#else
|
||||
new_argv[0] = SSDATA (path);
|
||||
#endif
|
||||
|
||||
discard_output = FIXNUMP (buffer) || (NILP (buffer) && NILP (output_file));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue