1
Fork 0
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:
Eli Zaretskii 2025-01-11 11:29:18 +02:00
parent b1621769ee
commit cc62eb196d

View file

@ -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));