(Qascii_incompatible): New variable.
[bpt/emacs.git] / src / callproc.c
CommitLineData
80856e74 1/* Synchronous subprocess invocation for GNU Emacs.
fe12847a 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
aaef169d 3 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
80856e74
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
826c56ac 9the Free Software Foundation; either version 2, or (at your option)
80856e74
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
80856e74
JB
21
22
68c45bf0 23#include <config.h>
80856e74 24#include <signal.h>
e576cab4 25#include <errno.h>
565620a5 26#include <stdio.h>
80856e74 27
03695ace 28#ifndef USE_CRT_DLL
426b37ae 29extern int errno;
03695ace 30#endif
426b37ae 31
80856e74
JB
32/* Define SIGCHLD as an alias for SIGCLD. */
33
34#if !defined (SIGCHLD) && defined (SIGCLD)
35#define SIGCHLD SIGCLD
36#endif /* SIGCLD */
37
38#include <sys/types.h>
88a64fef 39
3cbd6585
GM
40#ifdef HAVE_UNISTD_H
41#include <unistd.h>
42#endif
43
80856e74 44#include <sys/file.h>
776a24a1 45#ifdef HAVE_FCNTL_H
472e83fe 46#define INCLUDED_FCNTL
80856e74
JB
47#include <fcntl.h>
48#endif
49
bad95d8f
RS
50#ifdef WINDOWSNT
51#define NOMINMAX
52#include <windows.h>
53#include <stdlib.h> /* for proper declaration of environ */
54#include <fcntl.h>
489f9371 55#include "w32.h"
bad95d8f
RS
56#define _P_NOWAIT 1 /* from process.h */
57#endif
58
7e6c2178 59#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
472e83fe 60#define INCLUDED_FCNTL
7e6c2178
RS
61#include <fcntl.h>
62#include <sys/stat.h>
63#include <sys/param.h>
64#include <errno.h>
65#endif /* MSDOS */
66
80856e74
JB
67#ifndef O_RDONLY
68#define O_RDONLY 0
69#endif
70
71#ifndef O_WRONLY
72#define O_WRONLY 1
73#endif
74
75#include "lisp.h"
76#include "commands.h"
77#include "buffer.h"
32d08644 78#include "charset.h"
edf496dd 79#include "ccl.h"
32d08644 80#include "coding.h"
f0b950cf 81#include "composite.h"
57bda87a 82#include <epaths.h>
80856e74 83#include "process.h"
d177f194 84#include "syssignal.h"
a129418f 85#include "systty.h"
aba637ec 86#include "blockinput.h"
80856e74 87
5f027cea
EZ
88#ifdef MSDOS
89#include "msdos.h"
90#endif
91
80856e74
JB
92#ifdef VMS
93extern noshare char **environ;
94#else
03695ace 95#ifndef USE_CRT_DLL
80856e74
JB
96extern char **environ;
97#endif
03695ace 98#endif
80856e74 99
f95c3f91 100#ifdef HAVE_SETPGID
2b7e8799 101#if !defined (USG) || defined (BSD_PGRPS)
320695d8 102#undef setpgrp
f95c3f91
GM
103#define setpgrp setpgid
104#endif
2b7e8799 105#endif
f95c3f91 106
b81a1b72
SM
107Lisp_Object Vexec_path, Vexec_directory, Vexec_suffixes;
108Lisp_Object Vdata_directory, Vdoc_directory;
1e7ce61b 109Lisp_Object Vconfigure_info_directory, Vshared_game_score_directory;
8abd035b 110Lisp_Object Vtemp_file_name_pattern;
80856e74
JB
111
112Lisp_Object Vshell_file_name;
113
80856e74 114Lisp_Object Vprocess_environment;
80856e74 115
bad95d8f 116#ifdef DOS_NT
093650fe 117Lisp_Object Qbuffer_file_type;
bad95d8f 118#endif /* DOS_NT */
093650fe 119
80856e74
JB
120/* True iff we are about to fork off a synchronous process or if we
121 are waiting for it. */
122int synch_process_alive;
123
124/* Nonzero => this is a string explaining death of synchronous subprocess. */
125char *synch_process_death;
126
ca498128
JD
127/* Nonzero => this is the signal number that terminated the subprocess. */
128int synch_process_termsig;
129
80856e74
JB
130/* If synch_process_death is zero,
131 this is exit code of synchronous subprocess. */
132int synch_process_retcode;
133\f
37d54121
RS
134/* Clean up when exiting Fcall_process.
135 On MSDOS, delete the temporary file on any kind of termination.
136 On Unix, kill the process and any children on termination by signal. */
137
138/* Nonzero if this is termination due to exit. */
139static int call_process_exited;
140
80856e74
JB
141#ifndef VMS /* VMS version is in vmsproc.c. */
142
d177f194
JB
143static Lisp_Object
144call_process_kill (fdpid)
145 Lisp_Object fdpid;
146{
68c45bf0 147 emacs_close (XFASTINT (Fcar (fdpid)));
d177f194
JB
148 EMACS_KILLPG (XFASTINT (Fcdr (fdpid)), SIGKILL);
149 synch_process_alive = 0;
150 return Qnil;
151}
152
80856e74
JB
153Lisp_Object
154call_process_cleanup (fdpid)
155 Lisp_Object fdpid;
156{
e0f712ba 157#if defined (MSDOS) || defined (MAC_OS8)
7e6c2178 158 /* for MSDOS fdpid is really (fd . tempfile) */
c1350752
KH
159 register Lisp_Object file;
160 file = Fcdr (fdpid);
68c45bf0 161 emacs_close (XFASTINT (Fcar (fdpid)));
d5db4077
KR
162 if (strcmp (SDATA (file), NULL_DEVICE) != 0)
163 unlink (SDATA (file));
e0f712ba 164#else /* not MSDOS and not MAC_OS8 */
d177f194
JB
165 register int pid = XFASTINT (Fcdr (fdpid));
166
37d54121 167 if (call_process_exited)
6b6e798b 168 {
68c45bf0 169 emacs_close (XFASTINT (Fcar (fdpid)));
6b6e798b
RS
170 return Qnil;
171 }
37d54121 172
d177f194
JB
173 if (EMACS_KILLPG (pid, SIGINT) == 0)
174 {
aed13378 175 int count = SPECPDL_INDEX ();
d177f194
JB
176 record_unwind_protect (call_process_kill, fdpid);
177 message1 ("Waiting for process to die...(type C-g again to kill it instantly)");
178 immediate_quit = 1;
179 QUIT;
180 wait_for_termination (pid);
181 immediate_quit = 0;
182 specpdl_ptr = specpdl + count; /* Discard the unwind protect. */
183 message1 ("Waiting for process to die...done");
184 }
80856e74 185 synch_process_alive = 0;
68c45bf0 186 emacs_close (XFASTINT (Fcar (fdpid)));
7e6c2178 187#endif /* not MSDOS */
80856e74
JB
188 return Qnil;
189}
190
191DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0,
fdb82f93
PJ
192 doc: /* Call PROGRAM synchronously in separate process.
193The remaining arguments are optional.
194The program's input comes from file INFILE (nil means `/dev/null').
195Insert output in BUFFER before point; t means current buffer;
196 nil for BUFFER means discard it; 0 means discard and don't wait.
197BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
198REAL-BUFFER says what to do with standard output, as above,
199while STDERR-FILE says what to do with standard error in the child.
200STDERR-FILE may be nil (discard standard error output),
201t (mix it with ordinary output), or a file name string.
202
203Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
204Remaining arguments are strings passed as command arguments to PROGRAM.
205
206If BUFFER is 0, `call-process' returns immediately with value nil.
207Otherwise it waits for PROGRAM to terminate
208and returns a numeric exit status or a signal description string.
d98b59b5
MB
209If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
210
211usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
fdb82f93 212 (nargs, args)
80856e74
JB
213 int nargs;
214 register Lisp_Object *args;
215{
0aa2630f
KS
216 Lisp_Object infile, buffer, current_dir, path;
217 int display_p;
80856e74
JB
218 int fd[2];
219 int filefd;
220 register int pid;
4da256b1
KS
221#define CALLPROC_BUFFER_SIZE_MIN (16 * 1024)
222#define CALLPROC_BUFFER_SIZE_MAX (4 * CALLPROC_BUFFER_SIZE_MIN)
223 char buf[CALLPROC_BUFFER_SIZE_MAX];
224 int bufsize = CALLPROC_BUFFER_SIZE_MIN;
aed13378 225 int count = SPECPDL_INDEX ();
2d607244 226
4d3b07fd
KR
227 register const unsigned char **new_argv
228 = (const unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
80856e74 229 struct buffer *old = current_buffer;
39eaa782
RS
230 /* File to use for stderr in the child.
231 t means use same as standard output. */
232 Lisp_Object error_file;
7e6c2178
RS
233#ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
234 char *outf, *tempfile;
235 int outfilefd;
236#endif
e0f712ba 237#ifdef MAC_OS8
052062e0
RS
238 char *tempfile;
239 int outfilefd;
240#endif
80856e74
JB
241#if 0
242 int mask;
243#endif
32d08644
KH
244 struct coding_system process_coding; /* coding-system of process output */
245 struct coding_system argument_coding; /* coding-system of arguments */
09494912
RS
246 /* Set to the return value of Ffind_operation_coding_system. */
247 Lisp_Object coding_systems;
248
249 /* Qt denotes that Ffind_operation_coding_system is not yet called. */
250 coding_systems = Qt;
32d08644 251
b7826503 252 CHECK_STRING (args[0]);
80856e74 253
39eaa782
RS
254 error_file = Qt;
255
7e6c2178
RS
256#ifndef subprocesses
257 /* Without asynchronous processes we cannot have BUFFER == 0. */
177c0ea7 258 if (nargs >= 3
09ffb8b5 259 && (INTEGERP (CONSP (args[2]) ? XCAR (args[2]) : args[2])))
7e6c2178
RS
260 error ("Operating system cannot handle asynchronous subprocesses");
261#endif /* subprocesses */
262
09494912 263 /* Decide the coding-system for giving arguments. */
32d08644
KH
264 {
265 Lisp_Object val, *args2;
32d08644
KH
266 int i;
267
268 /* If arguments are supplied, we may have to encode them. */
269 if (nargs >= 5)
270 {
30d57b8e
RS
271 int must_encode = 0;
272
e7c1c20e 273 for (i = 4; i < nargs; i++)
b7826503 274 CHECK_STRING (args[i]);
e7c1c20e 275
a2286b5c 276 for (i = 4; i < nargs; i++)
30d57b8e
RS
277 if (STRING_MULTIBYTE (args[i]))
278 must_encode = 1;
279
beacaab3
KH
280 if (!NILP (Vcoding_system_for_write))
281 val = Vcoding_system_for_write;
30d57b8e 282 else if (! must_encode)
beacaab3
KH
283 val = Qnil;
284 else
32d08644
KH
285 {
286 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
287 args2[0] = Qcall_process;
288 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
08ee4e87 289 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
776b95cb 290 if (CONSP (coding_systems))
70949dac 291 val = XCDR (coding_systems);
776b95cb 292 else if (CONSP (Vdefault_process_coding_system))
70949dac 293 val = XCDR (Vdefault_process_coding_system);
beacaab3
KH
294 else
295 val = Qnil;
32d08644
KH
296 }
297 setup_coding_system (Fcheck_coding_system (val), &argument_coding);
76a25e79
KH
298 if (argument_coding.eol_type == CODING_EOL_UNDECIDED)
299 argument_coding.eol_type = system_eol_type;
32d08644 300 }
32d08644
KH
301 }
302
e576cab4
JB
303 if (nargs >= 2 && ! NILP (args[1]))
304 {
305 infile = Fexpand_file_name (args[1], current_buffer->directory);
b7826503 306 CHECK_STRING (infile);
e576cab4 307 }
80856e74 308 else
5437e9f9 309 infile = build_string (NULL_DEVICE);
80856e74 310
e576cab4
JB
311 if (nargs >= 3)
312 {
39eaa782
RS
313 buffer = args[2];
314
315 /* If BUFFER is a list, its meaning is
316 (BUFFER-FOR-STDOUT FILE-FOR-STDERR). */
317 if (CONSP (buffer))
318 {
70949dac 319 if (CONSP (XCDR (buffer)))
45be8a1e 320 {
a9d4f28a 321 Lisp_Object stderr_file;
70949dac 322 stderr_file = XCAR (XCDR (buffer));
45be8a1e
RS
323
324 if (NILP (stderr_file) || EQ (Qt, stderr_file))
325 error_file = stderr_file;
326 else
327 error_file = Fexpand_file_name (stderr_file, Qnil);
328 }
329
70949dac 330 buffer = XCAR (buffer);
39eaa782 331 }
044512ed 332
39eaa782
RS
333 if (!(EQ (buffer, Qnil)
334 || EQ (buffer, Qt)
3ffde7d6 335 || INTEGERP (buffer)))
e576cab4 336 {
39eaa782
RS
337 Lisp_Object spec_buffer;
338 spec_buffer = buffer;
50fe359b 339 buffer = Fget_buffer_create (buffer);
39eaa782
RS
340 /* Mention the buffer name for a better error message. */
341 if (NILP (buffer))
b7826503
PJ
342 CHECK_BUFFER (spec_buffer);
343 CHECK_BUFFER (buffer);
e576cab4
JB
344 }
345 }
177c0ea7 346 else
e576cab4 347 buffer = Qnil;
80856e74 348
58616e67
JB
349 /* Make sure that the child will be able to chdir to the current
350 buffer's current directory, or its unhandled equivalent. We
351 can't just have the child check for an error when it does the
352 chdir, since it's in a vfork.
353
354 We have to GCPRO around this because Fexpand_file_name,
355 Funhandled_file_name_directory, and Ffile_accessible_directory_p
356 might call a file name handling function. The argument list is
357 protected by the caller, so all we really have to worry about is
358 buffer. */
359 {
34b87689 360 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
58616e67
JB
361
362 current_dir = current_buffer->directory;
363
34b87689 364 GCPRO4 (infile, buffer, current_dir, error_file);
58616e67 365
c52b0b34
KH
366 current_dir
367 = expand_and_dir_to_file (Funhandled_file_name_directory (current_dir),
368 Qnil);
58616e67
JB
369 if (NILP (Ffile_accessible_directory_p (current_dir)))
370 report_file_error ("Setting current directory",
371 Fcons (current_buffer->directory, Qnil));
372
34b87689
KH
373 if (STRING_MULTIBYTE (infile))
374 infile = ENCODE_FILE (infile);
375 if (STRING_MULTIBYTE (current_dir))
376 current_dir = ENCODE_FILE (current_dir);
377 if (STRINGP (error_file) && STRING_MULTIBYTE (error_file))
378 error_file = ENCODE_FILE (error_file);
58616e67
JB
379 UNGCPRO;
380 }
381
0aa2630f 382 display_p = INTERACTIVE && nargs >= 4 && !NILP (args[3]);
80856e74 383
d5db4077 384 filefd = emacs_open (SDATA (infile), O_RDONLY, 0);
80856e74
JB
385 if (filefd < 0)
386 {
34b87689 387 infile = DECODE_FILE (infile);
e576cab4 388 report_file_error ("Opening process input file", Fcons (infile, Qnil));
80856e74
JB
389 }
390 /* Search for program; barf if not found. */
c52b0b34
KH
391 {
392 struct gcpro gcpro1;
393
394 GCPRO1 (current_dir);
5c150961 395 openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK));
c52b0b34
KH
396 UNGCPRO;
397 }
012c6fcb 398 if (NILP (path))
80856e74 399 {
68c45bf0 400 emacs_close (filefd);
80856e74
JB
401 report_file_error ("Searching for program", Fcons (args[0], Qnil));
402 }
8ee8f447
RS
403
404 /* If program file name starts with /: for quoting a magic name,
405 discard that. */
406 if (SBYTES (path) > 2 && SREF (path, 0) == '/'
407 && SREF (path, 1) == ':')
408 path = Fsubstring (path, make_number (2), Qnil);
409
d5db4077 410 new_argv[0] = SDATA (path);
c364e618
KH
411 if (nargs > 4)
412 {
413 register int i;
c5bfa12b 414 struct gcpro gcpro1, gcpro2, gcpro3;
c364e618 415
c5bfa12b
KH
416 GCPRO3 (infile, buffer, current_dir);
417 argument_coding.dst_multibyte = 0;
418 for (i = 4; i < nargs; i++)
c364e618 419 {
c5bfa12b
KH
420 argument_coding.src_multibyte = STRING_MULTIBYTE (args[i]);
421 if (CODING_REQUIRE_ENCODING (&argument_coding))
c364e618 422 {
c5bfa12b
KH
423 /* We must encode this argument. */
424 args[i] = encode_coding_string (args[i], &argument_coding, 1);
425 if (argument_coding.type == coding_type_ccl)
426 setup_ccl_program (&(argument_coding.spec.ccl.encoder), Qnil);
c364e618 427 }
d5db4077 428 new_argv[i - 3] = SDATA (args[i]);
c364e618 429 }
c5bfa12b 430 UNGCPRO;
db54baaa 431 new_argv[nargs - 3] = 0;
c364e618 432 }
db54baaa
KH
433 else
434 new_argv[1] = 0;
80856e74 435
7e6c2178 436#ifdef MSDOS /* MW, July 1993 */
8a52365c 437 if ((outf = egetenv ("TMPDIR")))
7e6c2178
RS
438 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
439 else
440 {
441 tempfile = alloca (20);
442 *tempfile = '\0';
443 }
444 dostounix_filename (tempfile);
177c0ea7 445 if (*tempfile == '\0' || tempfile[strlen (tempfile) - 1] != '/')
7e6c2178
RS
446 strcat (tempfile, "/");
447 strcat (tempfile, "detmp.XXX");
448 mktemp (tempfile);
449
450 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
451 if (outfilefd < 0)
452 {
68c45bf0 453 emacs_close (filefd);
6f89d28a
MB
454 report_file_error ("Opening process output file",
455 Fcons (build_string (tempfile), Qnil));
7e6c2178 456 }
6f89d28a 457 fd[0] = filefd;
2610078a 458 fd[1] = outfilefd;
6f89d28a 459#endif /* MSDOS */
7e6c2178 460
e0f712ba 461#ifdef MAC_OS8
052062e0
RS
462 /* Since we don't have pipes on the Mac, create a temporary file to
463 hold the output of the subprocess. */
d5db4077
KR
464 tempfile = (char *) alloca (SBYTES (Vtemp_file_name_pattern) + 1);
465 bcopy (SDATA (Vtemp_file_name_pattern), tempfile,
466 SBYTES (Vtemp_file_name_pattern) + 1);
052062e0
RS
467
468 mktemp (tempfile);
469
470 outfilefd = creat (tempfile, S_IREAD | S_IWRITE);
471 if (outfilefd < 0)
472 {
473 close (filefd);
474 report_file_error ("Opening process output file",
475 Fcons (build_string (tempfile), Qnil));
476 }
477 fd[0] = filefd;
478 fd[1] = outfilefd;
e0f712ba 479#endif /* MAC_OS8 */
052062e0 480
d50d3dc8 481 if (INTEGERP (buffer))
68c45bf0 482 fd[1] = emacs_open (NULL_DEVICE, O_WRONLY, 0), fd[0] = -1;
80856e74
JB
483 else
484 {
7e6c2178 485#ifndef MSDOS
e0f712ba 486#ifndef MAC_OS8
db92b288
GM
487 errno = 0;
488 if (pipe (fd) == -1)
489 {
490 emacs_close (filefd);
491 report_file_error ("Creating process pipe", Qnil);
492 }
7e6c2178 493#endif
052062e0 494#endif
80856e74
JB
495#if 0
496 /* Replaced by close_process_descs */
497 set_exclusive_use (fd[0]);
498#endif
499 }
500
501 {
502 /* child_setup must clobber environ in systems with true vfork.
503 Protect it from permanent change. */
504 register char **save_environ = environ;
505 register int fd1 = fd[1];
39eaa782 506 int fd_error = fd1;
80856e74
JB
507
508#if 0 /* Some systems don't have sigblock. */
e065a56e 509 mask = sigblock (sigmask (SIGCHLD));
80856e74
JB
510#endif
511
512 /* Record that we're about to create a synchronous process. */
513 synch_process_alive = 1;
514
5c03767e
RS
515 /* These vars record information from process termination.
516 Clear them now before process can possibly terminate,
517 to avoid timing error if process terminates soon. */
518 synch_process_death = 0;
519 synch_process_retcode = 0;
ca498128 520 synch_process_termsig = 0;
5c03767e 521
39eaa782 522 if (NILP (error_file))
68c45bf0 523 fd_error = emacs_open (NULL_DEVICE, O_WRONLY, 0);
39eaa782
RS
524 else if (STRINGP (error_file))
525 {
526#ifdef DOS_NT
d5db4077 527 fd_error = emacs_open (SDATA (error_file),
68c45bf0
PE
528 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
529 S_IREAD | S_IWRITE);
39eaa782 530#else /* not DOS_NT */
d5db4077 531 fd_error = creat (SDATA (error_file), 0666);
39eaa782
RS
532#endif /* not DOS_NT */
533 }
534
535 if (fd_error < 0)
536 {
68c45bf0 537 emacs_close (filefd);
6f89d28a 538 if (fd[0] != filefd)
68c45bf0 539 emacs_close (fd[0]);
39eaa782 540 if (fd1 >= 0)
68c45bf0 541 emacs_close (fd1);
6f89d28a
MB
542#ifdef MSDOS
543 unlink (tempfile);
544#endif
34b87689
KH
545 if (NILP (error_file))
546 error_file = build_string (NULL_DEVICE);
547 else if (STRINGP (error_file))
548 error_file = DECODE_FILE (error_file);
549 report_file_error ("Cannot redirect stderr", Fcons (error_file, Qnil));
39eaa782 550 }
89e1ec1d 551
e0f712ba 552#ifdef MAC_OS8
052062e0
RS
553 {
554 /* Call run_mac_command in sysdep.c here directly instead of doing
555 a child_setup as for MSDOS and other platforms. Note that this
556 code does not handle passing the environment to the synchronous
557 Mac subprocess. */
558 char *infn, *outfn, *errfn, *currdn;
177c0ea7 559
052062e0
RS
560 /* close these files so subprocess can write to them */
561 close (outfilefd);
562 if (fd_error != outfilefd)
563 close (fd_error);
564 fd1 = -1; /* No harm in closing that one! */
565
d5db4077 566 infn = SDATA (infile);
052062e0
RS
567 outfn = tempfile;
568 if (NILP (error_file))
569 errfn = NULL_DEVICE;
570 else if (EQ (Qt, error_file))
571 errfn = outfn;
572 else
d5db4077
KR
573 errfn = SDATA (error_file);
574 currdn = SDATA (current_dir);
052062e0
RS
575 pid = run_mac_command (new_argv, currdn, infn, outfn, errfn);
576
577 /* Record that the synchronous process exited and note its
578 termination status. */
579 synch_process_alive = 0;
580 synch_process_retcode = pid;
581 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
68c45bf0 582 {
ca9c0567 583 synchronize_system_messages_locale ();
68c45bf0
PE
584 synch_process_death = strerror (errno);
585 }
052062e0
RS
586
587 /* Since CRLF is converted to LF within `decode_coding', we can
588 always open a file with binary mode. */
589 fd[0] = open (tempfile, O_BINARY);
590 if (fd[0] < 0)
591 {
592 unlink (tempfile);
593 close (filefd);
594 report_file_error ("Cannot re-open temporary file", Qnil);
595 }
596 }
e0f712ba 597#else /* not MAC_OS8 */
2610078a 598#ifdef MSDOS /* MW, July 1993 */
c17c4250 599 /* Note that on MSDOS `child_setup' actually returns the child process
2610078a
KH
600 exit status, not its PID, so we assign it to `synch_process_retcode'
601 below. */
c17c4250
EZ
602 pid = child_setup (filefd, outfilefd, fd_error, (char **) new_argv,
603 0, current_dir);
39eaa782 604
2610078a
KH
605 /* Record that the synchronous process exited and note its
606 termination status. */
607 synch_process_alive = 0;
608 synch_process_retcode = pid;
609 if (synch_process_retcode < 0) /* means it couldn't be exec'ed */
68c45bf0 610 {
ca9c0567 611 synchronize_system_messages_locale ();
68c45bf0
PE
612 synch_process_death = strerror (errno);
613 }
2610078a 614
68c45bf0 615 emacs_close (outfilefd);
2610078a 616 if (fd_error != outfilefd)
68c45bf0 617 emacs_close (fd_error);
2610078a 618 fd1 = -1; /* No harm in closing that one! */
32d08644
KH
619 /* Since CRLF is converted to LF within `decode_coding', we can
620 always open a file with binary mode. */
68c45bf0 621 fd[0] = emacs_open (tempfile, O_RDONLY | O_BINARY, 0);
2610078a
KH
622 if (fd[0] < 0)
623 {
624 unlink (tempfile);
68c45bf0 625 emacs_close (filefd);
2610078a
KH
626 report_file_error ("Cannot re-open temporary file", Qnil);
627 }
628#else /* not MSDOS */
bad95d8f 629#ifdef WINDOWSNT
2d607244
RS
630 pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
631 0, current_dir);
bad95d8f 632#else /* not WINDOWSNT */
aba637ec
KS
633 BLOCK_INPUT;
634
80856e74
JB
635 pid = vfork ();
636
637 if (pid == 0)
638 {
639 if (fd[0] >= 0)
68c45bf0 640 emacs_close (fd[0]);
1e7963c7
RS
641#ifdef HAVE_SETSID
642 setsid ();
643#endif
644#if defined (USG) && !defined (BSD_PGRPS)
80856e74
JB
645 setpgrp ();
646#else
647 setpgrp (pid, pid);
648#endif /* USG */
2d607244
RS
649 child_setup (filefd, fd1, fd_error, (char **) new_argv,
650 0, current_dir);
80856e74 651 }
aba637ec
KS
652
653 UNBLOCK_INPUT;
bad95d8f 654#endif /* not WINDOWSNT */
cd5f8f60
RS
655
656 /* The MSDOS case did this already. */
657 if (fd_error >= 0)
68c45bf0 658 emacs_close (fd_error);
2610078a 659#endif /* not MSDOS */
e0f712ba 660#endif /* not MAC_OS8 */
80856e74 661
80856e74
JB
662 environ = save_environ;
663
6b6e798b
RS
664 /* Close most of our fd's, but not fd[0]
665 since we will use that to read input from. */
68c45bf0 666 emacs_close (filefd);
799abb26 667 if (fd1 >= 0 && fd1 != fd_error)
68c45bf0 668 emacs_close (fd1);
80856e74
JB
669 }
670
671 if (pid < 0)
672 {
6b6e798b 673 if (fd[0] >= 0)
68c45bf0 674 emacs_close (fd[0]);
80856e74
JB
675 report_file_error ("Doing vfork", Qnil);
676 }
677
d50d3dc8 678 if (INTEGERP (buffer))
80856e74 679 {
6b6e798b 680 if (fd[0] >= 0)
68c45bf0 681 emacs_close (fd[0]);
80856e74 682#ifndef subprocesses
e576cab4
JB
683 /* If Emacs has been built with asynchronous subprocess support,
684 we don't need to do this, I think because it will then have
685 the facilities for handling SIGCHLD. */
80856e74
JB
686 wait_without_blocking ();
687#endif /* subprocesses */
80856e74
JB
688 return Qnil;
689 }
690
6b6e798b 691 /* Enable sending signal if user quits below. */
37d54121
RS
692 call_process_exited = 0;
693
e0f712ba 694#if defined(MSDOS) || defined(MAC_OS8)
7e6c2178
RS
695 /* MSDOS needs different cleanup information. */
696 record_unwind_protect (call_process_cleanup,
697 Fcons (make_number (fd[0]), build_string (tempfile)));
698#else
80856e74
JB
699 record_unwind_protect (call_process_cleanup,
700 Fcons (make_number (fd[0]), make_number (pid)));
e0f712ba 701#endif /* not MSDOS and not MAC_OS8 */
80856e74
JB
702
703
d50d3dc8 704 if (BUFFERP (buffer))
80856e74
JB
705 Fset_buffer (buffer);
706
09494912
RS
707 if (NILP (buffer))
708 {
709 /* If BUFFER is nil, we must read process output once and then
710 discard it, so setup coding system but with nil. */
711 setup_coding_system (Qnil, &process_coding);
712 }
713 else
714 {
715 Lisp_Object val, *args2;
716
717 val = Qnil;
718 if (!NILP (Vcoding_system_for_read))
719 val = Vcoding_system_for_read;
720 else
721 {
722 if (EQ (coding_systems, Qt))
723 {
724 int i;
725
726 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
727 args2[0] = Qcall_process;
728 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
729 coding_systems
730 = Ffind_operation_coding_system (nargs + 1, args2);
731 }
732 if (CONSP (coding_systems))
70949dac 733 val = XCAR (coding_systems);
09494912 734 else if (CONSP (Vdefault_process_coding_system))
70949dac 735 val = XCAR (Vdefault_process_coding_system);
09494912
RS
736 else
737 val = Qnil;
738 }
739 setup_coding_system (Fcheck_coding_system (val), &process_coding);
740 /* In unibyte mode, character code conversion should not take
741 place but EOL conversion should. So, setup raw-text or one
742 of the subsidiary according to the information just setup. */
743 if (NILP (current_buffer->enable_multibyte_characters)
744 && !NILP (val))
745 setup_raw_text_coding_system (&process_coding);
746 }
c5bfa12b
KH
747 process_coding.src_multibyte = 0;
748 process_coding.dst_multibyte
749 = (BUFFERP (buffer)
750 ? ! NILP (XBUFFER (buffer)->enable_multibyte_characters)
751 : ! NILP (current_buffer->enable_multibyte_characters));
09494912 752
80856e74
JB
753 immediate_quit = 1;
754 QUIT;
755
756 {
757 register int nread;
0ad477db 758 int first = 1;
6e3bfbb2 759 int total_read = 0;
321fecde 760 int carryover = 0;
0aa2630f 761 int display_on_the_fly = display_p;
05b44e90 762 struct coding_system saved_coding;
f778b157
KH
763 int pt_orig = PT, pt_byte_orig = PT_BYTE;
764 int inserted;
05b44e90
KH
765
766 saved_coding = process_coding;
f0b950cf
KH
767 if (process_coding.composing != COMPOSITION_DISABLED)
768 coding_allocate_composition_data (&process_coding, PT);
60558b19 769 while (1)
80856e74 770 {
60558b19
RS
771 /* Repeatedly read until we've filled as much as possible
772 of the buffer size we have. But don't read
8e6208c5 773 less than 1024--save that for the next bufferful. */
321fecde 774 nread = carryover;
60558b19 775 while (nread < bufsize - 1024)
00fb3e95 776 {
4da256b1 777 int this_read = emacs_read (fd[0], buf + nread,
68c45bf0 778 bufsize - nread);
60558b19
RS
779
780 if (this_read < 0)
781 goto give_up;
782
783 if (this_read == 0)
7a7ab107
KH
784 {
785 process_coding.mode |= CODING_MODE_LAST_BLOCK;
786 break;
787 }
60558b19
RS
788
789 nread += this_read;
7a7ab107 790 total_read += this_read;
60558b19 791
7a7ab107
KH
792 if (display_on_the_fly)
793 break;
794 }
60558b19
RS
795
796 /* Now NREAD is the total amount of data in the buffer. */
80856e74 797 immediate_quit = 0;
177c0ea7 798
012c6fcb 799 if (!NILP (buffer))
32d08644 800 {
c5bfa12b 801 if (! CODING_MAY_REQUIRE_DECODING (&process_coding))
4da256b1 802 insert_1_both (buf, nread, nread, 0, 1, 0);
32d08644
KH
803 else
804 { /* We have to decode the input. */
f0b950cf
KH
805 int size;
806 char *decoding_buf;
32d08644 807
f0b950cf
KH
808 repeat_decoding:
809 size = decoding_buffer_size (&process_coding, nread);
810 decoding_buf = (char *) xmalloc (size);
177c0ea7 811
b252f801
KH
812 /* We can't use the macro CODING_REQUIRE_DETECTION
813 because it always returns nonzero if the coding
814 system requires EOL detection. Here, we have to
815 check only whether or not the coding system
816 requires text-encoding detection. */
817 if (process_coding.type == coding_type_undecided)
950a45d0 818 {
4da256b1 819 detect_coding (&process_coding, buf, nread);
950a45d0 820 if (process_coding.composing != COMPOSITION_DISABLED)
07c381ad
KH
821 /* We have not yet allocated the composition
822 data because the coding type was undecided. */
950a45d0
KH
823 coding_allocate_composition_data (&process_coding, PT);
824 }
2d892150
KH
825 if (process_coding.cmp_data)
826 process_coding.cmp_data->char_offset = PT;
177c0ea7 827
4da256b1 828 decode_coding (&process_coding, buf, decoding_buf,
321fecde 829 nread, size);
177c0ea7 830
7a7ab107
KH
831 if (display_on_the_fly
832 && saved_coding.type == coding_type_undecided
833 && process_coding.type != coding_type_undecided)
834 {
835 /* We have detected some coding system. But,
836 there's a possibility that the detection was
0aa2630f
KS
837 done by insufficient data. So, we try the code
838 detection again with more data. */
a871dd58 839 xfree (decoding_buf);
7a7ab107
KH
840 display_on_the_fly = 0;
841 process_coding = saved_coding;
842 carryover = nread;
0aa2630f
KS
843 /* This is to make the above condition always
844 fails in the future. */
845 saved_coding.type = coding_type_no_conversion;
7a7ab107
KH
846 continue;
847 }
177c0ea7 848
321fecde 849 if (process_coding.produced > 0)
2d892150
KH
850 insert_1_both (decoding_buf, process_coding.produced_char,
851 process_coding.produced, 0, 1, 0);
a871dd58 852 xfree (decoding_buf);
7bdba03c
GM
853
854 if (process_coding.result == CODING_FINISH_INCONSISTENT_EOL)
855 {
856 Lisp_Object eol_type, coding;
857
858 if (process_coding.eol_type == CODING_EOL_CR)
859 {
860 /* CRs have been replaced with LFs. Undo
861 that in the text inserted above. */
862 unsigned char *p;
177c0ea7 863
7bdba03c 864 move_gap_both (PT, PT_BYTE);
177c0ea7 865
7bdba03c
GM
866 p = BYTE_POS_ADDR (pt_byte_orig);
867 for (; p < GPT_ADDR; ++p)
868 if (*p == '\n')
869 *p = '\r';
870 }
871 else if (process_coding.eol_type == CODING_EOL_CRLF)
872 {
873 /* CR LFs have been replaced with LFs. Undo
874 that by inserting CRs in front of LFs in
875 the text inserted above. */
876 EMACS_INT bytepos, old_pt, old_pt_byte, nCR;
877
878 old_pt = PT;
879 old_pt_byte = PT_BYTE;
880 nCR = 0;
177c0ea7 881
7bdba03c
GM
882 for (bytepos = PT_BYTE - 1;
883 bytepos >= pt_byte_orig;
884 --bytepos)
885 if (FETCH_BYTE (bytepos) == '\n')
886 {
887 EMACS_INT charpos = BYTE_TO_CHAR (bytepos);
888 TEMP_SET_PT_BOTH (charpos, bytepos);
889 insert_1_both ("\r", 1, 1, 0, 1, 0);
890 ++nCR;
891 }
892
893 TEMP_SET_PT_BOTH (old_pt + nCR, old_pt_byte + nCR);
894 }
895
896 /* Set the coding system symbol to that for
897 Unix-like EOL. */
898 eol_type = Fget (saved_coding.symbol, Qeol_type);
899 if (VECTORP (eol_type)
900 && ASIZE (eol_type) == 3
901 && SYMBOLP (AREF (eol_type, CODING_EOL_LF)))
902 coding = AREF (eol_type, CODING_EOL_LF);
903 else
904 coding = saved_coding.symbol;
177c0ea7 905
7bdba03c
GM
906 process_coding.symbol = coding;
907 process_coding.eol_type = CODING_EOL_LF;
908 process_coding.mode
909 &= ~CODING_MODE_INHIBIT_INCONSISTENT_EOL;
910 }
177c0ea7 911
f0b950cf
KH
912 nread -= process_coding.consumed;
913 carryover = nread;
321fecde 914 if (carryover > 0)
c5bfa12b
KH
915 /* As CARRYOVER should not be that large, we had
916 better avoid overhead of bcopy. */
4da256b1 917 BCOPY_SHORT (buf + process_coding.consumed, buf,
c5bfa12b 918 carryover);
f0b950cf
KH
919 if (process_coding.result == CODING_FINISH_INSUFFICIENT_CMP)
920 {
921 /* The decoding ended because of insufficient data
922 area to record information about composition.
923 We must try decoding with additional data area
2d892150 924 before reading more output for the process. */
f0b950cf
KH
925 coding_allocate_composition_data (&process_coding, PT);
926 goto repeat_decoding;
927 }
32d08644
KH
928 }
929 }
c5bfa12b 930
321fecde 931 if (process_coding.mode & CODING_MODE_LAST_BLOCK)
c5bfa12b 932 break;
6e3bfbb2 933
4da256b1 934#if (CALLPROC_BUFFER_SIZE_MIN != CALLPROC_BUFFER_SIZE_MAX)
6e3bfbb2 935 /* Make the buffer bigger as we continue to read more data,
4da256b1
KS
936 but not past CALLPROC_BUFFER_SIZE_MAX. */
937 if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
938 if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
939 bufsize = CALLPROC_BUFFER_SIZE_MAX;
940#endif
6e3bfbb2 941
0aa2630f 942 if (display_p)
0ad477db
RS
943 {
944 if (first)
945 prepare_menu_bars ();
946 first = 0;
3007ebfb 947 redisplay_preserve_echo_area (1);
0aa2630f
KS
948 /* This variable might have been set to 0 for code
949 detection. In that case, we set it back to 1 because
950 we should have already detected a coding system. */
951 display_on_the_fly = 1;
0ad477db 952 }
80856e74
JB
953 immediate_quit = 1;
954 QUIT;
955 }
60558b19 956 give_up: ;
80856e74 957
2d892150
KH
958 if (!NILP (buffer)
959 && process_coding.cmp_data)
960 {
961 coding_restore_composition (&process_coding, Fcurrent_buffer ());
962 coding_free_composition_data (&process_coding);
963 }
f0b950cf 964
838c9726 965 {
aed13378 966 int post_read_count = SPECPDL_INDEX ();
838c9726
KH
967
968 record_unwind_protect (save_excursion_restore, save_excursion_save ());
969 inserted = PT - pt_orig;
970 TEMP_SET_PT_BOTH (pt_orig, pt_byte_orig);
971 if (SYMBOLP (process_coding.post_read_conversion)
972 && !NILP (Ffboundp (process_coding.post_read_conversion)))
973 call1 (process_coding.post_read_conversion, make_number (inserted));
f778b157 974
838c9726 975 Vlast_coding_system_used = process_coding.symbol;
bbd29cfe 976
838c9726
KH
977 /* If the caller required, let the buffer inherit the
978 coding-system used to decode the process output. */
979 if (inherit_process_coding_system)
980 call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
981 make_number (total_read));
982
983 unbind_to (post_read_count, Qnil);
984 }
3b440bb5
EZ
985 }
986
80856e74
JB
987 /* Wait for it to terminate, unless it already has. */
988 wait_for_termination (pid);
989
990 immediate_quit = 0;
991
992 set_buffer_internal (old);
993
37d54121
RS
994 /* Don't kill any children that the subprocess may have left behind
995 when exiting. */
996 call_process_exited = 1;
997
80856e74
JB
998 unbind_to (count, Qnil);
999
ca498128
JD
1000 if (synch_process_termsig)
1001 {
1002 char *signame;
1003
1004 synchronize_system_messages_locale ();
1005 signame = strsignal (synch_process_termsig);
1006
1007 if (signame == 0)
1008 signame = "unknown";
1009
1010 synch_process_death = signame;
1011 }
1012
80856e74 1013 if (synch_process_death)
68c45bf0
PE
1014 return code_convert_string_norecord (build_string (synch_process_death),
1015 Vlocale_coding_system, 0);
80856e74
JB
1016 return make_number (synch_process_retcode);
1017}
1018#endif
1019\f
9fefd2ba 1020static Lisp_Object
80856e74
JB
1021delete_temp_file (name)
1022 Lisp_Object name;
1023{
1a271e14
KR
1024 /* Suppress jka-compr handling, etc. */
1025 int count = SPECPDL_INDEX ();
1026 specbind (intern ("file-name-handler-alist"), Qnil);
2e3dc201 1027 internal_delete_file (name);
1a271e14 1028 unbind_to (count, Qnil);
320695d8 1029 return Qnil;
80856e74
JB
1030}
1031
1032DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,
fdb82f93
PJ
1033 3, MANY, 0,
1034 doc: /* Send text from START to END to a synchronous process running PROGRAM.
1035The remaining arguments are optional.
1036Delete the text if fourth arg DELETE is non-nil.
1037
1038Insert output in BUFFER before point; t means current buffer;
1039 nil for BUFFER means discard it; 0 means discard and don't wait.
1040BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
1041REAL-BUFFER says what to do with standard output, as above,
1042while STDERR-FILE says what to do with standard error in the child.
1043STDERR-FILE may be nil (discard standard error output),
1044t (mix it with ordinary output), or a file name string.
1045
1046Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
1047Remaining args are passed to PROGRAM at startup as command args.
1048
ba9a5174 1049If BUFFER is 0, `call-process-region' returns immediately with value nil.
fdb82f93
PJ
1050Otherwise it waits for PROGRAM to terminate
1051and returns a numeric exit status or a signal description string.
d98b59b5
MB
1052If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
1053
1054usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */)
fdb82f93 1055 (nargs, args)
80856e74
JB
1056 int nargs;
1057 register Lisp_Object *args;
1058{
39323a7e
KH
1059 struct gcpro gcpro1;
1060 Lisp_Object filename_string;
1061 register Lisp_Object start, end;
aed13378 1062 int count = SPECPDL_INDEX ();
08ee4e87 1063 /* Qt denotes we have not yet called Ffind_operation_coding_system. */
09494912 1064 Lisp_Object coding_systems;
32d08644
KH
1065 Lisp_Object val, *args2;
1066 int i;
bad95d8f 1067#ifdef DOS_NT
7e6c2178 1068 char *tempfile;
7e6c2178
RS
1069 char *outf = '\0';
1070
8a52365c
EZ
1071 if ((outf = egetenv ("TMPDIR"))
1072 || (outf = egetenv ("TMP"))
1073 || (outf = egetenv ("TEMP")))
7e6c2178
RS
1074 strcpy (tempfile = alloca (strlen (outf) + 20), outf);
1075 else
1076 {
1077 tempfile = alloca (20);
1078 *tempfile = '\0';
1079 }
0774fcf8 1080 if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
7e6c2178 1081 strcat (tempfile, "/");
5711b547
RS
1082 if ('/' == DIRECTORY_SEP)
1083 dostounix_filename (tempfile);
1084 else
1085 unixtodos_filename (tempfile);
0774fcf8
RS
1086#ifdef WINDOWSNT
1087 strcat (tempfile, "emXXXXXX");
1088#else
7e6c2178 1089 strcat (tempfile, "detmp.XXX");
0774fcf8 1090#endif
bad95d8f 1091#else /* not DOS_NT */
d5db4077
KR
1092 char *tempfile = (char *) alloca (SBYTES (Vtemp_file_name_pattern) + 1);
1093 bcopy (SDATA (Vtemp_file_name_pattern), tempfile,
1094 SBYTES (Vtemp_file_name_pattern) + 1);
bad95d8f 1095#endif /* not DOS_NT */
7e6c2178 1096
09494912
RS
1097 coding_systems = Qt;
1098
1ddc85a4
DL
1099#ifdef HAVE_MKSTEMP
1100 {
1101 int fd = mkstemp (tempfile);
1102 if (fd == -1)
1103 report_file_error ("Failed to open temporary file",
1104 Fcons (Vtemp_file_name_pattern, Qnil));
1105 else
1106 close (fd);
1107 }
1108#else
80856e74 1109 mktemp (tempfile);
1ddc85a4 1110#endif
80856e74
JB
1111
1112 filename_string = build_string (tempfile);
39323a7e 1113 GCPRO1 (filename_string);
80856e74
JB
1114 start = args[0];
1115 end = args[1];
32d08644 1116 /* Decide coding-system of the contents of the temporary file. */
91489411
RS
1117 if (!NILP (Vcoding_system_for_write))
1118 val = Vcoding_system_for_write;
1119 else if (NILP (current_buffer->enable_multibyte_characters))
32d08644
KH
1120 val = Qnil;
1121 else
beacaab3 1122 {
91489411
RS
1123 args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2);
1124 args2[0] = Qcall_process_region;
1125 for (i = 0; i < nargs; i++) args2[i + 1] = args[i];
1126 coding_systems = Ffind_operation_coding_system (nargs + 1, args2);
1127 if (CONSP (coding_systems))
70949dac 1128 val = XCDR (coding_systems);
91489411 1129 else if (CONSP (Vdefault_process_coding_system))
70949dac 1130 val = XCDR (Vdefault_process_coding_system);
beacaab3 1131 else
91489411 1132 val = Qnil;
beacaab3 1133 }
32d08644 1134
168afdaa 1135 {
aed13378 1136 int count1 = SPECPDL_INDEX ();
168afdaa
RS
1137
1138 specbind (intern ("coding-system-for-write"), val);
bb951f0e
KR
1139 /* POSIX lets mk[s]temp use "."; don't invoke jka-compr if we
1140 happen to get a ".Z" suffix. */
1141 specbind (intern ("file-name-handler-alist"), Qnil);
168afdaa
RS
1142 Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil);
1143
1144 unbind_to (count1, Qnil);
1145 }
91489411 1146
177c0ea7 1147 /* Note that Fcall_process takes care of binding
91489411 1148 coding-system-for-read. */
093650fe 1149
80856e74
JB
1150 record_unwind_protect (delete_temp_file, filename_string);
1151
edf496dd 1152 if (nargs > 3 && !NILP (args[3]))
80856e74
JB
1153 Fdelete_region (start, end);
1154
edf496dd
KH
1155 if (nargs > 3)
1156 {
1157 args += 2;
1158 nargs -= 2;
1159 }
1160 else
1161 {
1162 args[0] = args[2];
1163 nargs = 2;
1164 }
1165 args[1] = filename_string;
80856e74 1166
edf496dd 1167 RETURN_UNGCPRO (unbind_to (count, Fcall_process (nargs, args)));
80856e74
JB
1168}
1169\f
1170#ifndef VMS /* VMS version is in vmsproc.c. */
1171
dfcf069d
AS
1172static int relocate_fd ();
1173
80856e74
JB
1174/* This is the last thing run in a newly forked inferior
1175 either synchronous or asynchronous.
1176 Copy descriptors IN, OUT and ERR as descriptors 0, 1 and 2.
1177 Initialize inferior's priority, pgrp, connected dir and environment.
1178 then exec another program based on new_argv.
1179
1180 This function may change environ for the superior process.
1181 Therefore, the superior process must save and restore the value
1182 of environ around the vfork and the call to this function.
1183
80856e74 1184 SET_PGRP is nonzero if we should put the subprocess into a separate
177c0ea7 1185 process group.
e576cab4
JB
1186
1187 CURRENT_DIR is an elisp string giving the path of the current
1188 directory the subprocess should have. Since we can't really signal
1189 a decent error from within the child, this should be verified as an
1190 executable directory by the parent. */
80856e74 1191
dfcf069d 1192int
e576cab4 1193child_setup (in, out, err, new_argv, set_pgrp, current_dir)
80856e74
JB
1194 int in, out, err;
1195 register char **new_argv;
80856e74 1196 int set_pgrp;
e576cab4 1197 Lisp_Object current_dir;
80856e74 1198{
e576cab4 1199 char **env;
7fcf7f05 1200 char *pwd_var;
bad95d8f
RS
1201#ifdef WINDOWSNT
1202 int cpid;
4252a4bd 1203 HANDLE handles[3];
bad95d8f 1204#endif /* WINDOWSNT */
e576cab4 1205
33abe2d9 1206 int pid = getpid ();
80856e74 1207
68d10241 1208#ifdef SET_EMACS_PRIORITY
4f0b9d49 1209 {
31ade731 1210 extern EMACS_INT emacs_priority;
4f0b9d49 1211
68d10241
RS
1212 if (emacs_priority < 0)
1213 nice (- emacs_priority);
4f0b9d49 1214 }
5b633aeb 1215#endif
80856e74
JB
1216
1217#ifdef subprocesses
1218 /* Close Emacs's descriptors that this process should not have. */
1219 close_process_descs ();
1220#endif
c17c4250
EZ
1221 /* DOS_NT isn't in a vfork, so if we are in the middle of load-file,
1222 we will lose if we call close_load_descs here. */
1223#ifndef DOS_NT
4458cebe 1224 close_load_descs ();
c17c4250 1225#endif
80856e74
JB
1226
1227 /* Note that use of alloca is always safe here. It's obvious for systems
1228 that do not have true vfork or that have true (stack) alloca.
1229 If using vfork and C_ALLOCA it is safe because that changes
1230 the superior's static variables as if the superior had done alloca
1231 and will be cleaned up in the usual way. */
e576cab4 1232 {
7fcf7f05 1233 register char *temp;
e576cab4 1234 register int i;
77d78be1 1235
d5db4077 1236 i = SBYTES (current_dir);
16425c4a
EZ
1237#ifdef MSDOS
1238 /* MSDOS must have all environment variables malloc'ed, because
1239 low-level libc functions that launch subsidiary processes rely
1240 on that. */
1241 pwd_var = (char *) xmalloc (i + 6);
1242#else
7fcf7f05 1243 pwd_var = (char *) alloca (i + 6);
16425c4a 1244#endif
7fcf7f05
RS
1245 temp = pwd_var + 4;
1246 bcopy ("PWD=", pwd_var, 4);
d5db4077 1247 bcopy (SDATA (current_dir), temp, i);
bad95d8f 1248 if (!IS_DIRECTORY_SEP (temp[i - 1])) temp[i++] = DIRECTORY_SEP;
e576cab4
JB
1249 temp[i] = 0;
1250
c17c4250 1251#ifndef DOS_NT
e576cab4
JB
1252 /* We can't signal an Elisp error here; we're in a vfork. Since
1253 the callers check the current directory before forking, this
1254 should only return an error if the directory's permissions
1255 are changed between the check and this chdir, but we should
1256 at least check. */
1257 if (chdir (temp) < 0)
20b25e46 1258 _exit (errno);
b4c7684c 1259#endif
7fcf7f05 1260
c17c4250
EZ
1261#ifdef DOS_NT
1262 /* Get past the drive letter, so that d:/ is left alone. */
1263 if (i > 2 && IS_DEVICE_SEP (temp[1]) && IS_DIRECTORY_SEP (temp[2]))
1264 {
1265 temp += 2;
1266 i -= 2;
1267 }
1268#endif
1269
7fcf7f05 1270 /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */
bad95d8f 1271 while (i > 2 && IS_DIRECTORY_SEP (temp[i - 1]))
7fcf7f05 1272 temp[--i] = 0;
e576cab4 1273 }
80856e74 1274
80856e74
JB
1275 /* Set `env' to a vector of the strings in Vprocess_environment. */
1276 {
1277 register Lisp_Object tem;
1278 register char **new_env;
1279 register int new_length;
1280
1281 new_length = 0;
1282 for (tem = Vprocess_environment;
70949dac
KR
1283 CONSP (tem) && STRINGP (XCAR (tem));
1284 tem = XCDR (tem))
80856e74
JB
1285 new_length++;
1286
7fcf7f05
RS
1287 /* new_length + 2 to include PWD and terminating 0. */
1288 env = new_env = (char **) alloca ((new_length + 2) * sizeof (char *));
1289
1290 /* If we have a PWD envvar, pass one down,
1291 but with corrected value. */
1292 if (getenv ("PWD"))
1293 *new_env++ = pwd_var;
80856e74 1294
cd9565ba 1295 /* Copy the Vprocess_environment strings into new_env. */
80856e74 1296 for (tem = Vprocess_environment;
70949dac
KR
1297 CONSP (tem) && STRINGP (XCAR (tem));
1298 tem = XCDR (tem))
cd9565ba
RS
1299 {
1300 char **ep = env;
d5db4077 1301 char *string = (char *) SDATA (XCAR (tem));
cd9565ba
RS
1302 /* See if this string duplicates any string already in the env.
1303 If so, don't put it in.
1304 When an env var has multiple definitions,
1305 we keep the definition that comes first in process-environment. */
1306 for (; ep != new_env; ep++)
1307 {
1308 char *p = *ep, *q = string;
1309 while (1)
1310 {
1311 if (*q == 0)
1312 /* The string is malformed; might as well drop it. */
1313 goto duplicate;
1314 if (*q != *p)
1315 break;
1316 if (*q == '=')
1317 goto duplicate;
1318 p++, q++;
1319 }
1320 }
1321 *new_env++ = string;
1322 duplicate: ;
1323 }
80856e74
JB
1324 *new_env = 0;
1325 }
bad95d8f
RS
1326#ifdef WINDOWSNT
1327 prepare_standard_handles (in, out, err, handles);
d5db4077 1328 set_process_dir (SDATA (current_dir));
bad95d8f 1329#else /* not WINDOWSNT */
426b37ae
JB
1330 /* Make sure that in, out, and err are not actually already in
1331 descriptors zero, one, or two; this could happen if Emacs is
7e6c2178 1332 started with its standard in, out, or error closed, as might
426b37ae 1333 happen under X. */
f29f9e4a
RS
1334 {
1335 int oin = in, oout = out;
1336
1337 /* We have to avoid relocating the same descriptor twice! */
1338
1339 in = relocate_fd (in, 3);
1340
1341 if (out == oin)
1342 out = in;
1343 else
3e9367e7 1344 out = relocate_fd (out, 3);
f29f9e4a
RS
1345
1346 if (err == oin)
1347 err = in;
1348 else if (err == oout)
1349 err = out;
1350 else
3e9367e7 1351 err = relocate_fd (err, 3);
f29f9e4a 1352 }
426b37ae 1353
c17c4250 1354#ifndef MSDOS
68c45bf0
PE
1355 emacs_close (0);
1356 emacs_close (1);
1357 emacs_close (2);
80856e74
JB
1358
1359 dup2 (in, 0);
1360 dup2 (out, 1);
1361 dup2 (err, 2);
68c45bf0
PE
1362 emacs_close (in);
1363 emacs_close (out);
1364 emacs_close (err);
c17c4250 1365#endif /* not MSDOS */
bad95d8f 1366#endif /* not WINDOWSNT */
80856e74 1367
6b2cd868 1368#if defined(USG) && !defined(BSD_PGRPS)
fdba8590 1369#ifndef SETPGRP_RELEASES_CTTY
e576cab4 1370 setpgrp (); /* No arguments but equivalent in this case */
fdba8590 1371#endif
e576cab4
JB
1372#else
1373 setpgrp (pid, pid);
1374#endif /* USG */
a129418f
RS
1375 /* setpgrp_of_tty is incorrect here; it uses input_fd. */
1376 EMACS_SET_TTY_PGRP (0, &pid);
80856e74 1377
c17c4250
EZ
1378#ifdef MSDOS
1379 pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
a3f0666f 1380 xfree (pwd_var);
c17c4250
EZ
1381 if (pid == -1)
1382 /* An error occurred while trying to run the subprocess. */
1383 report_file_error ("Spawning child process", Qnil);
1384 return pid;
1385#else /* not MSDOS */
bad95d8f
RS
1386#ifdef WINDOWSNT
1387 /* Spawn the child. (See ntproc.c:Spawnve). */
1388 cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
db77d785 1389 reset_standard_handles (in, out, err, handles);
ff27bfbe
KH
1390 if (cpid == -1)
1391 /* An error occurred while trying to spawn the process. */
1392 report_file_error ("Spawning child process", Qnil);
bad95d8f
RS
1393 return cpid;
1394#else /* not WINDOWSNT */
80856e74
JB
1395 /* execvp does not accept an environment arg so the only way
1396 to pass this environment is to set environ. Our caller
1397 is responsible for restoring the ambient value of environ. */
1398 environ = env;
1399 execvp (new_argv[0], new_argv);
1400
68c45bf0
PE
1401 emacs_write (1, "Can't exec program: ", 20);
1402 emacs_write (1, new_argv[0], strlen (new_argv[0]));
1403 emacs_write (1, "\n", 1);
80856e74 1404 _exit (1);
bad95d8f 1405#endif /* not WINDOWSNT */
7e6c2178 1406#endif /* not MSDOS */
80856e74
JB
1407}
1408
a3833dfe 1409/* Move the file descriptor FD so that its number is not less than MINFD.
426b37ae 1410 If the file descriptor is moved at all, the original is freed. */
dfcf069d 1411static int
a3833dfe
KH
1412relocate_fd (fd, minfd)
1413 int fd, minfd;
426b37ae 1414{
a3833dfe 1415 if (fd >= minfd)
426b37ae
JB
1416 return fd;
1417 else
1418 {
1419 int new = dup (fd);
1420 if (new == -1)
1421 {
20c018a0 1422 char *message1 = "Error while setting up child: ";
826c56ac 1423 char *errmessage = strerror (errno);
20c018a0 1424 char *message2 = "\n";
68c45bf0
PE
1425 emacs_write (2, message1, strlen (message1));
1426 emacs_write (2, errmessage, strlen (errmessage));
1427 emacs_write (2, message2, strlen (message2));
426b37ae
JB
1428 _exit (1);
1429 }
1430 /* Note that we hold the original FD open while we recurse,
1431 to guarantee we'll get a new FD if we need it. */
a3833dfe 1432 new = relocate_fd (new, minfd);
68c45bf0 1433 emacs_close (fd);
426b37ae
JB
1434 return new;
1435 }
1436}
1437
012c6fcb
JA
1438static int
1439getenv_internal (var, varlen, value, valuelen)
1440 char *var;
1441 int varlen;
1442 char **value;
1443 int *valuelen;
1444{
1445 Lisp_Object scan;
1446
70949dac 1447 for (scan = Vprocess_environment; CONSP (scan); scan = XCDR (scan))
012c6fcb 1448 {
c1350752
KH
1449 Lisp_Object entry;
1450
70949dac 1451 entry = XCAR (scan);
d50d3dc8 1452 if (STRINGP (entry)
d5db4077
KR
1453 && SBYTES (entry) > varlen
1454 && SREF (entry, varlen) == '='
bad95d8f
RS
1455#ifdef WINDOWSNT
1456 /* NT environment variables are case insensitive. */
d5db4077 1457 && ! strnicmp (SDATA (entry), var, varlen)
bad95d8f 1458#else /* not WINDOWSNT */
d5db4077 1459 && ! bcmp (SDATA (entry), var, varlen)
bad95d8f 1460#endif /* not WINDOWSNT */
a9971c6d 1461 )
012c6fcb 1462 {
d5db4077
KR
1463 *value = (char *) SDATA (entry) + (varlen + 1);
1464 *valuelen = SBYTES (entry) - (varlen + 1);
012c6fcb
JA
1465 return 1;
1466 }
1467 }
1468
1469 return 0;
1470}
1471
83fa009c 1472DEFUN ("getenv-internal", Fgetenv_internal, Sgetenv_internal, 1, 1, 0,
fdb82f93
PJ
1473 doc: /* Return the value of environment variable VAR, as a string.
1474VAR should be a string. Value is nil if VAR is undefined in the environment.
1475This function consults the variable ``process-environment'' for its value. */)
1476 (var)
012c6fcb
JA
1477 Lisp_Object var;
1478{
1479 char *value;
1480 int valuelen;
1481
b7826503 1482 CHECK_STRING (var);
d5db4077 1483 if (getenv_internal (SDATA (var), SBYTES (var),
012c6fcb
JA
1484 &value, &valuelen))
1485 return make_string (value, valuelen);
1486 else
1487 return Qnil;
1488}
1489
1490/* A version of getenv that consults process_environment, easily
e576cab4 1491 callable from C. */
012c6fcb
JA
1492char *
1493egetenv (var)
e576cab4 1494 char *var;
012c6fcb
JA
1495{
1496 char *value;
1497 int valuelen;
1498
1499 if (getenv_internal (var, strlen (var), &value, &valuelen))
1500 return value;
1501 else
1502 return 0;
1503}
1504
80856e74
JB
1505#endif /* not VMS */
1506\f
8de15d69 1507/* This is run before init_cmdargs. */
177c0ea7 1508
dfcf069d 1509void
8de15d69
RS
1510init_callproc_1 ()
1511{
1512 char *data_dir = egetenv ("EMACSDATA");
35a2f4b8
KH
1513 char *doc_dir = egetenv ("EMACSDOC");
1514
8de15d69 1515 Vdata_directory
177c0ea7 1516 = Ffile_name_as_directory (build_string (data_dir ? data_dir
8de15d69 1517 : PATH_DATA));
35a2f4b8
KH
1518 Vdoc_directory
1519 = Ffile_name_as_directory (build_string (doc_dir ? doc_dir
1520 : PATH_DOC));
9453ea7b 1521
e576cab4 1522 /* Check the EMACSPATH environment variable, defaulting to the
57bda87a 1523 PATH_EXEC path from epaths.h. */
e576cab4 1524 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
80856e74
JB
1525 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1526 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
8de15d69
RS
1527}
1528
e17f7533 1529/* This is run after init_cmdargs, when Vinstallation_directory is valid. */
8de15d69 1530
dfcf069d 1531void
8de15d69
RS
1532init_callproc ()
1533{
1534 char *data_dir = egetenv ("EMACSDATA");
177c0ea7 1535
8de15d69
RS
1536 register char * sh;
1537 Lisp_Object tempdir;
1538
9cc4fad5 1539 if (!NILP (Vinstallation_directory))
8de15d69 1540 {
05630743
RS
1541 /* Add to the path the lib-src subdir of the installation dir. */
1542 Lisp_Object tem;
1543 tem = Fexpand_file_name (build_string ("lib-src"),
1544 Vinstallation_directory);
bad95d8f 1545#ifndef DOS_NT
1a6640ec 1546 /* MSDOS uses wrapped binaries, so don't do this. */
0fa248bc 1547 if (NILP (Fmember (tem, Vexec_path)))
70ec1377
RS
1548 {
1549 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1550 Vexec_path = Fcons (tem, Vexec_path);
1551 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
1552 }
177c0ea7 1553
0fa248bc 1554 Vexec_directory = Ffile_name_as_directory (tem);
bad95d8f 1555#endif /* not DOS_NT */
8de15d69 1556
e17f7533
RS
1557 /* Maybe use ../etc as well as ../lib-src. */
1558 if (data_dir == 0)
1559 {
1560 tem = Fexpand_file_name (build_string ("etc"),
1561 Vinstallation_directory);
1562 Vdoc_directory = Ffile_name_as_directory (tem);
8de15d69
RS
1563 }
1564 }
7e933683
RS
1565
1566 /* Look for the files that should be in etc. We don't use
1567 Vinstallation_directory, because these files are never installed
e17f7533 1568 near the executable, and they are never in the build
7e933683
RS
1569 directory when that's different from the source directory.
1570
1571 Instead, if these files are not in the nominal place, we try the
1572 source directory. */
1573 if (data_dir == 0)
1574 {
70ec1377 1575 Lisp_Object tem, tem1, srcdir;
7e933683 1576
70ec1377
RS
1577 srcdir = Fexpand_file_name (build_string ("../src/"),
1578 build_string (PATH_DUMPLOADSEARCH));
7e933683
RS
1579 tem = Fexpand_file_name (build_string ("GNU"), Vdata_directory);
1580 tem1 = Ffile_exists_p (tem);
70ec1377 1581 if (!NILP (Fequal (srcdir, Vinvocation_directory)) || NILP (tem1))
7e933683 1582 {
70ec1377 1583 Lisp_Object newdir;
7e933683
RS
1584 newdir = Fexpand_file_name (build_string ("../etc/"),
1585 build_string (PATH_DUMPLOADSEARCH));
1586 tem = Fexpand_file_name (build_string ("GNU"), newdir);
1587 tem1 = Ffile_exists_p (tem);
1588 if (!NILP (tem1))
1589 Vdata_directory = newdir;
1590 }
1591 }
80856e74 1592
d883eb62
RS
1593#ifndef CANNOT_DUMP
1594 if (initialized)
1595#endif
1596 {
1597 tempdir = Fdirectory_file_name (Vexec_directory);
d5db4077 1598 if (access (SDATA (tempdir), 0) < 0)
d883eb62
RS
1599 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1600 Vexec_directory);
1601 }
80856e74 1602
e576cab4 1603 tempdir = Fdirectory_file_name (Vdata_directory);
d5db4077 1604 if (access (SDATA (tempdir), 0) < 0)
76d5c6cf
RS
1605 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1606 Vdata_directory);
e576cab4 1607
80856e74
JB
1608#ifdef VMS
1609 Vshell_file_name = build_string ("*dcl*");
1610#else
e576cab4 1611 sh = (char *) getenv ("SHELL");
80856e74
JB
1612 Vshell_file_name = build_string (sh ? sh : "/bin/sh");
1613#endif
8abd035b
RS
1614
1615#ifdef VMS
1616 Vtemp_file_name_pattern = build_string ("tmp:emacsXXXXXX.");
1617#else
1618 if (getenv ("TMPDIR"))
1619 {
1620 char *dir = getenv ("TMPDIR");
1621 Vtemp_file_name_pattern
1622 = Fexpand_file_name (build_string ("emacsXXXXXX"),
1623 build_string (dir));
1624 }
1625 else
1626 Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
1627#endif
63789758 1628
40b49d4b
JB
1629#ifdef DOS_NT
1630 Vshared_game_score_directory = Qnil;
1631#else
63789758
RS
1632 Vshared_game_score_directory = build_string (PATH_GAME);
1633 if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
1634 Vshared_game_score_directory = Qnil;
40b49d4b 1635#endif
9fefd2ba
JB
1636}
1637
dfcf069d 1638void
9fefd2ba
JB
1639set_process_environment ()
1640{
1641 register char **envp;
80856e74 1642
80856e74
JB
1643 Vprocess_environment = Qnil;
1644#ifndef CANNOT_DUMP
1645 if (initialized)
1646#endif
1647 for (envp = environ; *envp; envp++)
1648 Vprocess_environment = Fcons (build_string (*envp),
1649 Vprocess_environment);
80856e74
JB
1650}
1651
dfcf069d 1652void
80856e74
JB
1653syms_of_callproc ()
1654{
bad95d8f 1655#ifdef DOS_NT
093650fe
RS
1656 Qbuffer_file_type = intern ("buffer-file-type");
1657 staticpro (&Qbuffer_file_type);
bad95d8f 1658#endif /* DOS_NT */
7e6c2178 1659
80856e74 1660 DEFVAR_LISP ("shell-file-name", &Vshell_file_name,
fdb82f93
PJ
1661 doc: /* *File name to load inferior shells from.
1662Initialized from the SHELL environment variable. */);
80856e74
JB
1663
1664 DEFVAR_LISP ("exec-path", &Vexec_path,
fdb82f93
PJ
1665 doc: /* *List of directories to search programs to run in subprocesses.
1666Each element is a string (directory name) or nil (try default directory). */);
80856e74 1667
b81a1b72 1668 DEFVAR_LISP ("exec-suffixes", &Vexec_suffixes,
fdb82f93
PJ
1669 doc: /* *List of suffixes to try to find executable file names.
1670Each element is a string. */);
33d5af99 1671 Vexec_suffixes = Qnil;
b81a1b72 1672
80856e74 1673 DEFVAR_LISP ("exec-directory", &Vexec_directory,
fdb82f93
PJ
1674 doc: /* Directory for executables for Emacs to invoke.
1675More generally, this includes any architecture-dependent files
1676that are built and installed from the Emacs distribution. */);
e576cab4
JB
1677
1678 DEFVAR_LISP ("data-directory", &Vdata_directory,
fdb82f93
PJ
1679 doc: /* Directory of machine-independent files that come with GNU Emacs.
1680These are files intended for Emacs to use while it runs. */);
80856e74 1681
35a2f4b8 1682 DEFVAR_LISP ("doc-directory", &Vdoc_directory,
fdb82f93
PJ
1683 doc: /* Directory containing the DOC file that comes with GNU Emacs.
1684This is usually the same as data-directory. */);
35a2f4b8 1685
ed61592a 1686 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory,
fdb82f93
PJ
1687 doc: /* For internal use by the build procedure only.
1688This is the name of the directory in which the build procedure installed
1689Emacs's info files; the default value for Info-default-directory-list
1690includes this. */);
ed61592a
JB
1691 Vconfigure_info_directory = build_string (PATH_INFO);
1692
1e7ce61b 1693 DEFVAR_LISP ("shared-game-score-directory", &Vshared_game_score_directory,
b065672a
CW
1694 doc: /* Directory of score files for games which come with GNU Emacs.
1695If this variable is nil, then Emacs is unable to use a shared directory. */);
40b49d4b
JB
1696#ifdef DOS_NT
1697 Vshared_game_score_directory = Qnil;
1698#else
63789758 1699 Vshared_game_score_directory = build_string (PATH_GAME);
40b49d4b 1700#endif
b065672a 1701
8abd035b 1702 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
fdb82f93
PJ
1703 doc: /* Pattern for making names for temporary files.
1704This is used by `call-process-region'. */);
0537ec48 1705 /* This variable is initialized in init_callproc. */
8abd035b 1706
80856e74 1707 DEFVAR_LISP ("process-environment", &Vprocess_environment,
fdb82f93
PJ
1708 doc: /* List of environment variables for subprocesses to inherit.
1709Each element should be a string of the form ENVVARNAME=VALUE.
1710If multiple entries define the same variable, the first one always
1711takes precedence.
1712The environment which Emacs inherits is placed in this variable
776a24a1
DL
1713when Emacs starts.
1714Non-ASCII characters are encoded according to the initial value of
1715`locale-coding-system', i.e. the elements must normally be decoded for use.
1716See `setenv' and `getenv'. */);
80856e74
JB
1717
1718#ifndef VMS
1719 defsubr (&Scall_process);
83fa009c 1720 defsubr (&Sgetenv_internal);
986ffb24 1721#endif
e576cab4 1722 defsubr (&Scall_process_region);
80856e74 1723}
ab5796a9
MB
1724
1725/* arch-tag: 769b8045-1df7-4d2b-8968-e3fb49017f95
1726 (do not change this comment) */